Changeset 625 for trunk/kernel/mm/vseg.h
- Timestamp:
- Apr 10, 2019, 10:09:39 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/vseg.h
r623 r625 70 70 /******************************************************************************************* 71 71 * This structure defines a virtual segment descriptor. 72 * -The VSL contains only local vsegs, but is implemented as an xlist, because it can be73 * accessed bythread running in a remote cluster.74 * - The zombi list is used by the local MMAP allocator. It is implemented as a local list.72 * The VSL contains only local vsegs, but is implemented as an xlist, because it can be 73 * accessed by a thread running in a remote cluster. 74 * The xlist field is also used to implement the zombi lists used by the MMAP allocator. 75 75 ******************************************************************************************/ 76 76 … … 78 78 { 79 79 xlist_entry_t xlist; /*! all vsegs in same VSL */ 80 list_entry_t zlist; /*! all vsegs in same zombi list */81 80 struct vmm_s * vmm; /*! pointer on associated VM manager */ 82 81 uint32_t type; /*! vseg type */
Note: See TracChangeset
for help on using the changeset viewer.