- Timestamp:
- 2005-09-29T22:47:42Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 922c7ce
- Parents:
- 40a468a
- Location:
- include
- Files:
-
- 4 edited
-
fpu_context.h (modified) (2 diffs)
-
mm/buddy.h (modified) (2 diffs)
-
mm/heap.h (modified) (1 diff)
-
typedefs.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
include/fpu_context.h
r40a468a r941d1e9 27 27 */ 28 28 29 #ifndef fpu_context_h30 #define fpu_context_h29 #ifndef __FPU_CONTEXT_H__ 30 #define __FPU_CONTEXT_H__ 31 31 32 32 … … 41 41 42 42 43 #endif /* fpu_context_h*/43 #endif /* __FPU_CONTEXT_H__ */ 44 44 -
include/mm/buddy.h
r40a468a r941d1e9 35 35 #define BUDDY_SYSTEM_INNER_BLOCK 0xff 36 36 37 struct buddy_ operations {37 struct buddy_system_operations { 38 38 link_t *(* find_buddy)(link_t *); 39 39 link_t *(* bisect)(link_t *); … … 46 46 __u8 max_order; 47 47 link_t *order; 48 buddy_ operations_t *op;48 buddy_system_operations_t *op; 49 49 }; 50 50 51 extern buddy_system_t *buddy_system_create(__u8 max_order, buddy_ operations_t *op);51 extern buddy_system_t *buddy_system_create(__u8 max_order, buddy_system_operations_t *op); 52 52 extern link_t *buddy_system_alloc(buddy_system_t *b, __u8 i); 53 53 extern void buddy_system_free(buddy_system_t *b, link_t *block); -
include/mm/heap.h
r40a468a r941d1e9 38 38 struct chunk { 39 39 int used; 40 struct chunk*next;41 struct chunk*prev;40 chunk_t *next; 41 chunk_t *prev; 42 42 __u32 size; 43 43 __native data[0]; -
include/typedefs.h
r40a468a r941d1e9 65 65 66 66 typedef struct buddy_system buddy_system_t; 67 typedef struct buddy_ operations buddy_operations_t;67 typedef struct buddy_system_operations buddy_system_operations_t; 68 68 69 69 typedef struct zone zone_t;
Note:
See TracChangeset
for help on using the changeset viewer.
