Changeset 313 for trunk/kernel/mm/vseg.h
- Timestamp:
- Aug 2, 2017, 3:24:57 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/vseg.h
r101 r313 81 81 vpn_t vpn_size; /*! number of pages occupied */ 82 82 uint32_t flags; /*! vseg attributes */ 83 xptr_t mapper; /*! extended pointer on associated mapper*/84 fdid_t fdid; /*! associated fdid for a VSEG_TYPE_FILE*/85 uint32_t offset; /*! offset in file for a VSEG_TYPE_FILE*/86 cxy_t cxy; /*! target cluster for physical mapping */83 xptr_t file_mapper; /*! xptr on remote mapper (for types CODE / DATA / FILE) */ 84 intptr_t file_offset; /*! offset in file (for types CODE / DATA / FILE) */ 85 intptr_t file_size; /*! max segment size in mapper (for type DATA) */ 86 cxy_t cxy; /*! cluster for physical mapping (for non distributed) */ 87 87 } 88 88 vseg_t;
Note: See TracChangeset
for help on using the changeset viewer.