astroboy astroboy
/
CoOS_LWIP
Quick and dirty CoOS + LWIP ( Webserver )
CoOS/kernel/OsMM.h
- Committer:
- astroboy
- Date:
- 2011-09-10
- Revision:
- 0:94897d537b31
File content as of revision 0:94897d537b31:
/** ******************************************************************************* * @file OsMm.h * @version V1.1.4 * @date 2011.04.20 * @brief Header file related to memory management * @details This file including some defines and function declare related to * memory management. ******************************************************************************* * @copy * * INTERNAL FILE,DON'T PUBLIC. * * <h2><center>© COPYRIGHT 2009 CooCox </center></h2> ******************************************************************************* */ #ifndef _MM_H #define _MM_H typedef struct Memory { U8* memAddr; U8* freeBlock; U32 blockSize; U32 blockNum; }MM,*P_MM; typedef struct MemoryBlock { struct MemoryBlock* nextBlock; }MemBlk,*P_MemBlk; extern U32 MemoryIDVessel; #endif /* _MM_H */