Changeset 9904 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jun 25, 2008 11:03:03 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32323
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HostImpl.h
r8765 r9904 36 36 # include "win/svchlp.h" 37 37 #endif 38 39 #ifdef VBOX_WITH_RESOURCE_USAGE_API 40 #include "iprt/timer.h" 41 #include "iprt/system.h" 42 43 /* Each second we obtain new CPU load stats. */ 44 #define VBOX_USAGE_SAMPLER_INTERVAL 1000 45 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 46 38 47 39 48 class VirtualBox; … … 100 109 STDMETHOD(InsertUSBDeviceFilter) (ULONG aPosition, IHostUSBDeviceFilter *aFilter); 101 110 STDMETHOD(RemoveUSBDeviceFilter) (ULONG aPosition, IHostUSBDeviceFilter **aFilter); 111 112 STDMETHOD(GetProcessorUsage) (ULONG *user, ULONG *system, ULONG *idle); 102 113 103 114 // public methods only for internal purposes … … 167 178 USBProxyService *mUSBProxyService; 168 179 #endif /* VBOX_WITH_USB */ 180 181 #ifdef VBOX_WITH_RESOURCE_USAGE_API 182 /** Static timer callback. */ 183 static void staticSamplerCallback(PRTTIMER pTimer, void *pvUser, uint64_t iTick); 184 /** Member timer callback. */ 185 void usageSamplerCallback(); 186 187 /** Pointer to the usage sampling timer. */ 188 PRTTIMER m_pUsageSampler; 189 /** Time stamp of the last taken sample. */ 190 //uint64_t m_tsLastSampleTaken; 191 /** Structure to hold processor usage stats. */ 192 RTCPUUSAGESTATS m_CpuStats; 193 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 169 194 }; 170 195 -
trunk/src/VBox/Main/include/MachineImpl.h
r9883 r9904 48 48 #include <iprt/thread.h> 49 49 #include <iprt/time.h> 50 #ifdef VBOX_WITH_RESOURCE_USAGE_API 51 #include <iprt/system.h> 52 #include <iprt/timer.h> 53 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 50 54 51 55 #include <list> … … 519 523 STDMETHOD(SetConfigRegistryValue) (INPTR BSTR aKey, INPTR BSTR aValue); 520 524 525 STDMETHOD(GetProcessorUsage) (ULONG *user, ULONG *system); 526 521 527 // public methods only for internal purposes 522 528 … … 739 745 friend class SessionMachine; 740 746 friend class SnapshotMachine; 747 748 #ifdef VBOX_WITH_RESOURCE_USAGE_API 749 /** Static timer callback. */ 750 static void staticSamplerCallback(PRTTIMER pTimer, void *pvUser, uint64_t iTick); 751 /** Member timer callback. */ 752 void usageSamplerCallback(); 753 /** Pointer to the usage sampling timer. */ 754 PRTTIMER m_pUsageSampler; 755 /** Structure to hold processor usage stats. */ 756 RTPROCCPUUSAGESTATS m_CpuStats; 757 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 741 758 }; 742 759 … … 809 826 IConsole *aInitiator, MachineState_T *aMachineState, IProgress **aProgress); 810 827 828 /* We need to override and call real Machine's method. */ 829 STDMETHOD(GetProcessorUsage) (ULONG *user, ULONG *system); 830 811 831 // public methods only for internal purposes 812 832
Note:
See TracChangeset
for help on using the changeset viewer.