Changeset 2652 in vbox for trunk/src/VBox/Runtime/r0drv/nt
- Timestamp:
- May 15, 2007 11:48:17 PM (18 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/nt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
r1 r2652 37 37 { 38 38 Assert(cb != sizeof(void *)); /* 99% of pointer sized allocations are wrong. */ 39 PRTMEMHDR pHdr = (PRTMEMHDR)ExAllocatePoolWithTag(NonPagedPool, cb + sizeof(*pHdr), 'iprt');39 PRTMEMHDR pHdr = (PRTMEMHDR)ExAllocatePoolWithTag(NonPagedPool, cb + sizeof(*pHdr), IPRT_NT_POOL_TAG); 40 40 if (pHdr) 41 41 { -
trunk/src/VBox/Runtime/r0drv/nt/the-nt-kernel.h
r1 r2652 71 71 #endif /* IPRT_TARGET_NT4 */ 72 72 73 /** @def IPRT_NT_POOL_TAG 74 * Tag to use with the NT Pool APIs. 75 * In memory and in the various windbg tool it appears in the reverse order of 76 * what it is given as here, so it'll read "IPRT". 77 */ 78 #define IPRT_NT_POOL_TAG 'TRPI' 79 73 80 #endif 74 81
Note:
See TracChangeset
for help on using the changeset viewer.