Changeset 1787e527 in mainline for boot/genarch/balloc.h
- Timestamp:
- 2009-11-16T21:22:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ebdf94
- Parents:
- fcbd1be (diff), 9c70ed6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/genarch/balloc.h
rfcbd1be r1787e527 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.