Changeset 12535 in vbox for trunk/src/VBox/Main
- Timestamp:
- Sep 17, 2008 11:38:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/win/PerformanceWin.cpp
r12513 r12535 54 54 { 55 55 public: 56 CollectorWin();57 virtual ~CollectorWin();58 59 56 virtual int preCollect(const CollectorHints& hints); 60 57 virtual int getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle); … … 84 81 return new CollectorWin(); 85 82 } 86 87 CollectorWin::CollectorWin()88 {89 }90 91 CollectorWin::~CollectorWin()92 {93 94 }95 96 83 97 84 #define FILETTIME_TO_100NS(ft) (((uint64_t)ft.dwHighDateTime << 32) + ft.dwLowDateTime) … … 220 207 *mhz = (ULONG)(uTotalMhz / nProcessors); 221 208 209 delete ppi; 222 210 LogFlowThisFunc(("mhz=%u\n", *mhz)); 223 211 LogFlowThisFuncLeave();
Note:
See TracChangeset
for help on using the changeset viewer.