Changeset dc747e3 in mainline for generic/src/mm/frame.c
- Timestamp:
- 2005-12-15T10:27:59Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7dd2561
- Parents:
- 3fc03fd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/mm/frame.c
r3fc03fd rdc747e3 42 42 #include <align.h> 43 43 44 spinlock_t zone_head_lock;/**< this lock protects zone_head list */45 link_t zone_head; /**< list of all zones in the system */44 SPINLOCK_INITIALIZE(zone_head_lock); /**< this lock protects zone_head list */ 45 link_t zone_head; /**< list of all zones in the system */ 46 46 47 47 /** Blacklist containing non-available areas of memory. … … 243 243 void zone_init(void) 244 244 { 245 spinlock_initialize(&zone_head_lock, "zone_head_lock");246 245 list_initialize(&zone_head); 247 246 }
Note:
See TracChangeset
for help on using the changeset viewer.