Changes in boot/genarch/balloc.h [e731b0d:965dc18] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/genarch/balloc.h
re731b0d r965dc18 32 32 #include <types.h> 33 33 34 #define BALLOC_MAX_SIZE (128 * 1024) 35 34 36 typedef struct { 35 37 uintptr_t base; … … 37 39 } ballocs_t; 38 40 39 extern void balloc_init(ballocs_t *b all, uintptr_t base, uintptr_t kernel_base);41 extern void balloc_init(ballocs_t *b, uintptr_t base); 40 42 extern void *balloc(size_t size, size_t alignment); 41 extern void *balloc_rebase(void *ptr);42 43 43 44 #endif
Note:
See TracChangeset
for help on using the changeset viewer.