Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 481 → Rev 482

/SPARTAN/trunk/generic/include/config.h
35,7 → 35,7
 
#define STACK_SIZE PAGE_SIZE
 
#define CONFIG_MEMORY_SIZE 4*1024*1024
#define CONFIG_MEMORY_SIZE 8*1024*1024
#define CONFIG_HEAP_SIZE 300*1024
#define CONFIG_STACK_SIZE STACK_SIZE
 
/SPARTAN/trunk/generic/include/mm/buddy.h
37,7 → 37,7
struct buddy_system_operations {
link_t *(* find_buddy)(link_t *); /**< Return pointer to left-side or right-side buddy for block passed as argument. */
link_t *(* bisect)(link_t *); /**< Bisect the block passed as argument and return pointer to the new right-side buddy. */
link_t *(* coalesce)(link_t *, link_t *); /**< Coalesce to buddies into a bigger block. */
link_t *(* coalesce)(link_t *, link_t *); /**< Coalesce two buddies into a bigger block. */
void (*set_order)(link_t *, __u8); /**< Set order of block passed as argument. */
__u8 (*get_order)(link_t *); /**< Return order of block passed as argument. */
};