Published 03 Dec 2010, by
Eric Ebert
CoOS,
rtos
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _MM_H
00020 #define _MM_H
00021
00022
00023 typedef struct Memory
00024 {
00025 U8* memAddr;
00026 U8* freeBlock;
00027 U32 blockSize;
00028 U32 blockNum;
00029 }MM,*P_MM;
00030
00031
00032 typedef struct MemoryBlock
00033 {
00034 struct MemoryBlock* nextBlock;
00035 }MemBlk,*P_MemBlk;
00036
00037
00038 extern U32 MemoryIDVessel;
00039
00040 #endif
00041