Rev 534 | Rev 686 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 534 | Rev 683 | ||
|---|---|---|---|
| Line 53... | Line 53... | ||
| 53 | 53 | ||
| 54 | extern buddy_system_t *buddy_system_create(__u8 max_order, buddy_system_operations_t *op, void *data); |
54 | extern buddy_system_t *buddy_system_create(__u8 max_order, buddy_system_operations_t *op, void *data); |
| 55 | extern link_t *buddy_system_alloc(buddy_system_t *b, __u8 i); |
55 | extern link_t *buddy_system_alloc(buddy_system_t *b, __u8 i); |
| 56 | extern bool buddy_system_can_alloc(buddy_system_t *b, __u8 order); |
56 | extern bool buddy_system_can_alloc(buddy_system_t *b, __u8 order); |
| 57 | extern void buddy_system_free(buddy_system_t *b, link_t *block); |
57 | extern void buddy_system_free(buddy_system_t *b, link_t *block); |
| - | 58 | extern void buddy_system_structure_print(buddy_system_t *b); |
|
| - | 59 | ||
| 58 | 60 | ||
| 59 | #endif |
61 | #endif |