ApertureOS
bootstrap_mem_pool.h
Go to the documentation of this file.
1 #ifndef _BOOTSTRAP_MEM_POOL_MANAGER_H_
2 #define _BOOTSTRAP_MEM_POOL_MANAGER_H_
3 
4 #include "types.h"
5 #include "utils/common.h"
6 
7 #define BOOTSTRAP_MEM_POOL MB(32)
8 
9 void bootstrap_setup();
10 void* bootstrap_malloc(size_t size);
11 
12 #endif /* end of include guard: _BOOTSTRAP_MEM_POOL_MANAGER_H_ */
void * bootstrap_malloc(size_t size)
Definition: bootstrap_mem_pool.c:41
void bootstrap_setup()
Definition: bootstrap_mem_pool.c:12