Changeset 941d1e9 in mainline for include/mm/buddy.h


Ignore:
Timestamp:
2005-09-29T22:47:42Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
922c7ce
Parents:
40a468a
Message:

Make cross-compiler the default compiler on IA-32.
For native compilations, use ./build.ia32 native.

Small changes elsewhere.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/mm/buddy.h

    r40a468a r941d1e9  
    3535#define BUDDY_SYSTEM_INNER_BLOCK        0xff
    3636
    37 struct buddy_operations {
     37struct buddy_system_operations {
    3838        link_t *(* find_buddy)(link_t *);
    3939        link_t *(* bisect)(link_t *);
     
    4646        __u8 max_order;
    4747        link_t *order;
    48         buddy_operations_t *op;
     48        buddy_system_operations_t *op;
    4949};
    5050
    51 extern buddy_system_t *buddy_system_create(__u8 max_order, buddy_operations_t *op);
     51extern buddy_system_t *buddy_system_create(__u8 max_order, buddy_system_operations_t *op);
    5252extern link_t *buddy_system_alloc(buddy_system_t *b, __u8 i);
    5353extern void buddy_system_free(buddy_system_t *b, link_t *block);
Note: See TracChangeset for help on using the changeset viewer.