Changeset 433 for trunk/kernel/mm/page.h
- Timestamp:
- Feb 14, 2018, 3:40:19 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/page.h
r408 r433 56 56 * This structure defines a physical page descriptor. 57 57 * Size is 64 bytes for a 32 bits core... 58 * TODO : the list of waiting threads seems to be unused [AG] 59 $ TODO : the spinlock use has to be clarified [AG] 58 60 ************************************************************************************/ 59 61 … … 67 69 xlist_entry_t wait_root; /*! root of list of waiting threads (16) */ 68 70 uint32_t refcount; /*! reference counter (4) */ 69 uint32_t fork _nr;/*! number of pending forks (4) */70 spinlock_t lock; /*! only used to set the PG_LOCKED flag(16) */71 uint32_t forks; /*! number of pending forks (4) */ 72 spinlock_t lock; /*! To Be Defined [AG] (16) */ 71 73 } 72 74 page_t;
Note: See TracChangeset
for help on using the changeset viewer.