Lines Matching full:memory
13 * - Memory management
62 * - memory pool
67 * Kernel objects can be static objects, whose memory is allocated in compiling.
68 * It can be dynamic objects as well, whose memory is allocated from system heaps
99 * @defgroup MM Memory Management
100 * @brief memory management for memory pool and heap memory
102 * RT-Thread operating system supports two types memory management:
103 * - Static memory pool management
104 * - Dynamic memory heap management.
106 * The time to allocate a memory block from the memory pool is determinant. When
107 * the memory pool is empty, the allocated thread can be blocked (or immediately return,
109 * When other thread releases memory blocks to this memory pool, the blocked thread is
112 * There are two methods in dynamic memory heap management, one is used for small memory,
113 * such as less than 1MB. Another is a SLAB like memory management, which is suitable
114 * for large memory system. All of them has no real-time character.
143 * - memory hook, invoked when allocate or free memory block.