Changeset 40557 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Mar 20, 2012 10:24:36 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76950
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGFR3Trace.cpp
r40413 r40557 52 52 static const struct 53 53 { 54 /** The group name. */ 55 const char *pszName; 56 /** The name length. */ 57 uint32_t cchName; 54 58 /** The mask. */ 55 59 uint32_t fMask; 56 /** The name length. */57 uint32_t cchName;58 /** The group name. */59 const char *pszName;60 60 } g_aVmmTpGroups[] = 61 61 { 62 { VMMTPGROUP_EM, RT_STR_TUPLE("em")},63 { VMMTPGROUP_HM, RT_STR_TUPLE("hm")},64 { VMMTPGROUP_TM, RT_STR_TUPLE("tm")},62 { RT_STR_TUPLE("em"), VMMTPGROUP_EM }, 63 { RT_STR_TUPLE("hm"), VMMTPGROUP_HM }, 64 { RT_STR_TUPLE("tm"), VMMTPGROUP_TM }, 65 65 }; 66 66
Note:
See TracChangeset
for help on using the changeset viewer.