Changeset 2244 in vbox
- Timestamp:
- Apr 19, 2007 9:13:36 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20596
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/stam.h
r626 r2244 192 192 /** Kilobytes. */ 193 193 STAMUNIT_KILOBYTES, 194 /** Nano seconds. */ 195 STAMUNIT_NS, 196 /** Nanoseconds per call. */ 197 STAMUNIT_NS_PER_CALL, 198 /** Nanoseconds per call. */ 199 STAMUNIT_NS_PER_OCCURENCE, 200 /** Percentage. */ 201 STAMUNIT_PCT, 194 202 /** The end (exclusive). */ 195 203 STAMUNIT_END -
trunk/src/VBox/VMM/STAM.cpp
r552 r2244 994 994 case STAMUNIT_MEGABYTES: return "megabytes"; 995 995 case STAMUNIT_KILOBYTES: return "kilobytes"; 996 case STAMUNIT_NS: return "ns"; 997 case STAMUNIT_NS_PER_CALL: return "ns/call"; 998 case STAMUNIT_NS_PER_OCCURENCE: return "ns/time"; 999 case STAMUNIT_PCT: return "%"; 996 1000 997 1001 default:
Note:
See TracChangeset
for help on using the changeset viewer.