~helenos-nicf/helenos/nicf

« back to all changes in this revision

Viewing changes to kernel/generic/include/mm/buddy.h

  • Committer: Radim Vansa
  • Date: 2011-09-20 21:55:59 UTC
  • mfrom: (697.1.517 HelenOS.mainline)
  • Revision ID: radim.vansa@matfyz.cz-20110920215559-7fjpai6wt5ieurcq
Merge with mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
typedef struct buddy_system {
72
72
        /** Maximal order of block which can be stored by buddy system. */
73
73
        uint8_t max_order;
74
 
        link_t *order;
 
74
        list_t *order;
75
75
        buddy_system_operations_t *op;
76
76
        /** Pointer to be used by the implementation. */
77
77
        void *data;