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