Subversion Repositories HelenOS-historic

Rev

Rev 683 | Rev 735 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 683 Rev 686
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);
58
extern void buddy_system_structure_print(buddy_system_t *b, size_t elem_size);
59
 
59
 
60
 
60
 
61
#endif
61
#endif