Changeset 13598 in vbox for trunk/include/VBox
- Timestamp:
- Oct 27, 2008 7:36:49 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38506
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/stam.h
r12989 r13598 967 967 */ 968 968 969 VMMR3DECL(int) STAMR3InitUVM(PUVM pUVM);969 VMMR3DECL(int) STAMR3InitUVM(PUVM pUVM); 970 970 VMMR3DECL(void) STAMR3TermUVM(PUVM pUVM); 971 VMMR3DECL(int) STAMR3RegisterU(PUVM pUVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility,971 VMMR3DECL(int) STAMR3RegisterU(PUVM pUVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, 972 972 const char *pszName, STAMUNIT enmUnit, const char *pszDesc); 973 VMMR3DECL(int) STAMR3Register(PVM pVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility,973 VMMR3DECL(int) STAMR3Register(PVM pVM, void *pvSample, STAMTYPE enmType, STAMVISIBILITY enmVisibility, 974 974 const char *pszName, STAMUNIT enmUnit, const char *pszDesc); 975 975 … … 1086 1086 STAM_STATS({ STAM_REL_DEREG(pVM, pvSample); }) 1087 1087 1088 VMMR3DECL(int) STAMR3ResetU(PUVM pUVM, const char *pszPat);1089 VMMR3DECL(int) STAMR3Reset(PVM pVM, const char *pszPat);1090 VMMR3DECL(int) STAMR3SnapshotU(PUVM pUVM, const char *pszPat, char **ppszSnapshot, size_t *pcchSnapshot, bool fWithDesc);1091 VMMR3DECL(int) STAMR3Snapshot(PVM pVM, const char *pszPat, char **ppszSnapshot, size_t *pcchSnapshot, bool fWithDesc);1092 VMMR3DECL(int) STAMR3SnapshotFreeU(PUVM pUVM, char *pszSnapshot);1093 VMMR3DECL(int) STAMR3SnapshotFree(PVM pVM, char *pszSnapshot);1094 VMMR3DECL(int) STAMR3DumpU(PUVM pUVM, const char *pszPat);1095 VMMR3DECL(int) STAMR3Dump(PVM pVM, const char *pszPat);1096 VMMR3DECL(int) STAMR3DumpToReleaseLogU(PUVM pUVM, const char *pszPat);1097 VMMR3DECL(int) STAMR3DumpToReleaseLog(PVM pVM, const char *pszPat);1098 VMMR3DECL(int) STAMR3PrintU(PUVM pUVM, const char *pszPat);1099 VMMR3DECL(int) STAMR3Print(PVM pVM, const char *pszPat);1088 VMMR3DECL(int) STAMR3ResetU(PUVM pUVM, const char *pszPat); 1089 VMMR3DECL(int) STAMR3Reset(PVM pVM, const char *pszPat); 1090 VMMR3DECL(int) STAMR3SnapshotU(PUVM pUVM, const char *pszPat, char **ppszSnapshot, size_t *pcchSnapshot, bool fWithDesc); 1091 VMMR3DECL(int) STAMR3Snapshot(PVM pVM, const char *pszPat, char **ppszSnapshot, size_t *pcchSnapshot, bool fWithDesc); 1092 VMMR3DECL(int) STAMR3SnapshotFreeU(PUVM pUVM, char *pszSnapshot); 1093 VMMR3DECL(int) STAMR3SnapshotFree(PVM pVM, char *pszSnapshot); 1094 VMMR3DECL(int) STAMR3DumpU(PUVM pUVM, const char *pszPat); 1095 VMMR3DECL(int) STAMR3Dump(PVM pVM, const char *pszPat); 1096 VMMR3DECL(int) STAMR3DumpToReleaseLogU(PUVM pUVM, const char *pszPat); 1097 VMMR3DECL(int) STAMR3DumpToReleaseLog(PVM pVM, const char *pszPat); 1098 VMMR3DECL(int) STAMR3PrintU(PUVM pUVM, const char *pszPat); 1099 VMMR3DECL(int) STAMR3Print(PVM pVM, const char *pszPat); 1100 1100 1101 1101 /** … … 1117 1117 typedef FNSTAMR3ENUM *PFNSTAMR3ENUM; 1118 1118 1119 VMMR3DECL(int) STAMR3EnumU(PUVM pUVM, const char *pszPat, PFNSTAMR3ENUM pfnEnum, void *pvUser);1120 VMMR3DECL(int) STAMR3Enum(PVM pVM, const char *pszPat, PFNSTAMR3ENUM pfnEnum, void *pvUser);1119 VMMR3DECL(int) STAMR3EnumU(PUVM pUVM, const char *pszPat, PFNSTAMR3ENUM pfnEnum, void *pvUser); 1120 VMMR3DECL(int) STAMR3Enum(PVM pVM, const char *pszPat, PFNSTAMR3ENUM pfnEnum, void *pvUser); 1121 1121 VMMR3DECL(const char *) STAMR3GetUnit(STAMUNIT enmUnit); 1122 1122 … … 1128 1128 1129 1129 #endif 1130
Note:
See TracChangeset
for help on using the changeset viewer.