Changeset 5605 in vbox for trunk/src/VBox/Runtime/common/alloc
- Timestamp:
- Nov 1, 2007 4:09:26 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/heapsimple.cpp
r4071 r5605 61 61 62 62 /** The block is free if this flag is set. When cleared it's allocated. */ 63 #define RTHEAPSIMPLEBLOCK_FLAGS_FREE ((uintptr_t) BIT(0))63 #define RTHEAPSIMPLEBLOCK_FLAGS_FREE ((uintptr_t)RT_BIT(0)) 64 64 /** The magic value. */ 65 65 #define RTHEAPSIMPLEBLOCK_FLAGS_MAGIC ((uintptr_t)0xabcdef00) 66 66 /** The mask that needs to be applied to RTHEAPSIMPLEBLOCK::fFalgs to obtain the magic value. */ 67 #define RTHEAPSIMPLEBLOCK_FLAGS_MAGIC_MASK (~(uintptr_t) BIT(0))67 #define RTHEAPSIMPLEBLOCK_FLAGS_MAGIC_MASK (~(uintptr_t)RT_BIT(0)) 68 68 69 69 /**
Note:
See TracChangeset
for help on using the changeset viewer.