Changeset 408 for trunk/kernel/mm/vseg.h
- Timestamp:
- Dec 5, 2017, 4:20:07 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/vseg.h
r407 r408 68 68 /********************************************************************************************** 69 69 * This structure defines a virtual segment descriptor. 70 * - The VSL contains only local vsegs, but is implemented as an xlist, because it can be 71 * accessed by thread running in a remote cluster. 72 * - The zombi list is used by the local MMAP allocator. It is implemented as a local list. 70 73 *********************************************************************************************/ 71 74 72 75 typedef struct vseg_s 73 76 { 74 list_entry_t list; /*! all vsegs in same process / same free list if mmap */ 77 xlist_entry_t xlist; /*! all vsegs in same VSL (or same zombi list) */ 78 list_entry_t zlist; /*! all vsegs in same zombi list */ 75 79 struct vmm_s * vmm; /*! pointer on associated VM manager */ 76 80 uint32_t type; /*! vseg type */
Note: See TracChangeset
for help on using the changeset viewer.