Changeset 27950 in vbox
- Timestamp:
- Apr 1, 2010 5:07:40 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59653
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/linux/PerformanceLinux.cpp
r12546 r27950 39 39 { 40 40 public: 41 virtual int preCollect(const CollectorHints& hints );41 virtual int preCollect(const CollectorHints& hints, uint64_t /* iTick */); 42 42 virtual int getHostMemoryUsage(ULONG *total, ULONG *used, ULONG *available); 43 43 virtual int getProcessMemoryUsage(RTPROCESS process, ULONG *used); … … 69 69 // Collector HAL for Linux 70 70 71 int CollectorLinux::preCollect(const CollectorHints& hints )71 int CollectorLinux::preCollect(const CollectorHints& hints, uint64_t /* iTick */) 72 72 { 73 73 std::vector<RTPROCESS> processes; -
trunk/src/VBox/Main/win/PerformanceWin.cpp
r14948 r27950 57 57 CollectorWin(); 58 58 virtual ~CollectorWin(); 59 virtual int preCollect(const CollectorHints& hints );59 virtual int preCollect(const CollectorHints& hints, uint64_t /* iTick */); 60 60 virtual int getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle); 61 61 virtual int getHostCpuMHz(ULONG *mhz); … … 132 132 #define FILETTIME_TO_100NS(ft) (((uint64_t)ft.dwHighDateTime << 32) + ft.dwLowDateTime) 133 133 134 int CollectorWin::preCollect(const CollectorHints& hints )134 int CollectorWin::preCollect(const CollectorHints& hints, uint64_t /* iTick */) 135 135 { 136 136 LogFlowThisFuncEnter();
Note:
See TracChangeset
for help on using the changeset viewer.