blob: 2f6650195b9372ba7673bdb6ebb2f4c506d9447a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include"types.h"
typedef struct _KHEAPBLOCKBM {
struct _KHEAPBLOCKBM *next;
uint32_t size;
uint32_t used;
uint32_t bsize;
uint32_t lfb;
} KHEAPBLOCKBM;
typedef struct _KHEAPBM {
KHEAPBLOCKBM *fblock;
} KHEAPBM;
void k_heapBMInit(KHEAPBM *heap);
int k_heapBMAddBlock(KHEAPBM *heap, uintptr_t addr, uint32_t size, uint32_t bsize);
void *k_heapBMAlloc(KHEAPBM *heap, uint32_t size);
void k_heapBMFree(KHEAPBM *heap, void *ptr);
extern KHEAPBM kheap;
#define kmalloc k_heapBMAlloc
#define kfree k_heapBMFree
|