Changeset 469 for trunk/kernel/mm/page.h
- Timestamp:
- Aug 20, 2018, 1:04:16 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/page.h
r457 r469 56 56 * This structure defines a physical page descriptor. 57 57 * Size is 64 bytes for a 32 bits core... 58 * The spinlock is used to test/modify the forks counter. 58 59 * TODO : the list of waiting threads seems to be unused [AG] 59 $ TODO : the spinlock use has to be clarified [AG]60 * TODO : the refcount use has to be clarified 60 61 ************************************************************************************/ 61 62 … … 70 71 uint32_t refcount; /*! reference counter (4) */ 71 72 uint32_t forks; /*! number of pending forks (4) */ 72 spinlock_t lock; /*! To Be Defined [AG] (16)*/73 spinlock_t lock; /*! protect the forks field (4) */ 73 74 } 74 75 page_t;
Note: See TracChangeset
for help on using the changeset viewer.