Changeset 567 for trunk/kernel/mm/kcm.h
- Timestamp:
- Oct 5, 2018, 12:01:52 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/kcm.h
r457 r567 1 1 /* 2 * kcm.h - Per-cluster Kernel Cache Manager Interface2 * kcm.h - Per-cluster Kernel Cache Manager definition. 3 3 * 4 4 * Authors Ghassan Almaless (2008,2009,2010,2011,2012) … … 28 28 #include <list.h> 29 29 #include <hal_kernel_types.h> 30 #include < spinlock.h>30 #include <busylock.h> 31 31 #include <page.h> 32 32 #include <bits.h> … … 46 46 typedef struct kcm_s 47 47 { 48 spinlock_t lock; /*! protect exclusive access to allocator*/48 busylock_t lock; /*! protect KCM ammocator */ 49 49 uint32_t block_size; /*! rounded block size (bytes) */ 50 50 uint32_t blocks_nr; /*! max number of blocks per page */
Note: See TracChangeset
for help on using the changeset viewer.