Changeset 60133d0 in mainline for kernel/generic/include/mm/slab.h
- Timestamp:
- 2007-05-31T23:30:32Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ff3a34b
- Parents:
- 1e847fb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/slab.h
r1e847fb r60133d0 72 72 typedef struct { 73 73 link_t link; 74 count_t busy; 75 count_t size; 76 void *objs[ 0];/**< Slots in magazine */74 count_t busy; /**< Count of full slots in magazine */ 75 count_t size; /**< Number of slots in magazine */ 76 void *objs[]; /**< Slots in magazine */ 77 77 } slab_magazine_t; 78 78
Note:
See TracChangeset
for help on using the changeset viewer.