Changeset 92246 in vbox for trunk/src/VBox/Runtime/include/internal/memobj.h
- Timestamp:
- Nov 6, 2021 3:10:49 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/memobj.h
r91483 r92246 92 92 * @{ */ 93 93 /** Page level protection was changed. */ 94 #define RTR0MEMOBJ_FLAGS_PROT_CHANGED RT_BIT_32(0) 94 #define RTR0MEMOBJ_FLAGS_PROT_CHANGED RT_BIT_32(0) 95 /** Zero initialized at allocation. */ 96 #define RTR0MEMOBJ_FLAGS_ZERO_AT_ALLOC RT_BIT_32(1) 97 /** Uninitialized at allocation. */ 98 #define RTR0MEMOBJ_FLAGS_UNINITIALIZED_AT_ALLOC RT_BIT_32(2) 95 99 /** @} */ 96 100
Note:
See TracChangeset
for help on using the changeset viewer.