Changeset 39515 in vbox for trunk/src/VBox/Runtime/common/alloc
- Timestamp:
- Dec 2, 2011 1:41:07 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75190
- File:
-
- 1 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. */
Note:
See TracChangeset
for help on using the changeset viewer.