Changeset 39515 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Dec 2, 2011 1:41:07 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75190
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/memtracker.cpp
r39080 r39515 92 92 /** Critical section protecting the memory list. */ 93 93 RTCRITSECT CritSect; 94 /** The list of memory allocated by this user . */95 RTLIST NODEMemoryList;94 /** The list of memory allocated by this user (RTMEMTRACKERHDR). */ 95 RTLISTANCHOR MemoryList; 96 96 /** Positive numbers indicates recursion. 97 97 * Negative numbers are used for the global user since that is shared by … … 142 142 RTCRITSECT CritSect; 143 143 /** List of RTMEMTRACKERUSER records. */ 144 RTLIST NODEUserList;144 RTLISTANCHOR UserList; 145 145 /** The next user identifier number. */ 146 146 uint32_t idUserNext; … … 155 155 AVLU32TREE TagDbRoot; 156 156 /** List of RTMEMTRACKERTAG records. */ 157 RTLIST NODETagList;157 RTLISTANCHOR TagList; 158 158 #if ARCH_BITS == 32 159 159 /** Alignment padding. */ -
trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp
r39083 r39515 369 369 370 370 /** The list of compilation units (RTDWARFDIE). */ 371 RTLIST NODECompileUnitList;371 RTLISTANCHOR CompileUnitList; 372 372 } RTDBGMODDWARF; 373 373 /** Pointer to instance data of the DWARF reader. */ -
trunk/src/VBox/Runtime/common/vfs/vfschain.cpp
r39438 r39515 56 56 /** Critical section protecting g_rtVfsChainElementProviderList. */ 57 57 static RTCRITSECT g_rtVfsChainElementCritSect; 58 /** List of VFS chain element providers . */59 static RTLIST NODEg_rtVfsChainElementProviderList;58 /** List of VFS chain element providers (RTVFSCHAINELEMENTREG). */ 59 static RTLISTANCHOR g_rtVfsChainElementProviderList; 60 60 61 61 -
trunk/src/VBox/Runtime/common/vfs/vfsmemory.cpp
r39083 r39515 105 105 PRTVFSMEMEXTENT pCurExt; 106 106 /** Linked list of file extents - RTVFSMEMEXTENT. */ 107 RTLIST NODEExtentHead;107 RTLISTANCHOR ExtentHead; 108 108 /** The current extent size. 109 109 * This is slowly grown to RTVFSMEM_MAX_EXTENT_SIZE as the file grows. */
Note:
See TracChangeset
for help on using the changeset viewer.