Changeset 9937 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jun 25, 2008 6:18:13 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32360
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HostImpl.h
r9904 r9937 110 110 STDMETHOD(RemoveUSBDeviceFilter) (ULONG aPosition, IHostUSBDeviceFilter **aFilter); 111 111 112 STDMETHOD(GetProcessorUsage) (ULONG * user, ULONG *system, ULONG *idle);112 STDMETHOD(GetProcessorUsage) (ULONG *aUser, ULONG *aSystem, ULONG *aIdle); 113 113 114 114 // public methods only for internal purposes … … 170 170 #endif 171 171 172 #ifdef VBOX_WITH_RESOURCE_USAGE_API 173 /** Static timer callback. */ 174 static void UsageSamplerCallback (PRTTIMER pTimer, void *pvUser, uint64_t iTick); 175 /** Member timer callback. */ 176 void usageSamplerCallback(); 177 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 178 172 179 ComObjPtr <VirtualBox, ComWeakRef> mParent; 173 180 … … 180 187 181 188 #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 189 /** Pointer to the usage sampling timer. */ 188 PRTTIMER m_pUsageSampler; 189 /** Time stamp of the last taken sample. */ 190 //uint64_t m_tsLastSampleTaken; 190 PRTTIMER mUsageSampler; 191 191 /** Structure to hold processor usage stats. */ 192 RTCPUUSAGESTATS m _CpuStats;192 RTCPUUSAGESTATS mCpuStats; 193 193 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 194 194 }; -
trunk/src/VBox/Main/include/MachineImpl.h
r9904 r9937 168 168 ComObjPtr <Snapshot> mFirstSnapshot; 169 169 ComObjPtr <Snapshot> mCurrentSnapshot; 170 171 #ifdef VBOX_WITH_RESOURCE_USAGE_API 172 /** Pointer to the usage sampling timer. */ 173 PRTTIMER mUsageSampler; 174 /** Structure to hold processor usage stats. */ 175 RTPROCCPUUSAGESTATS mCpuStats; 176 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 170 177 }; 171 178 … … 713 720 void copyFrom (Machine *aThat); 714 721 722 #ifdef VBOX_WITH_RESOURCE_USAGE_API 723 /** Static timer callback. */ 724 static void UsageSamplerCallback (PRTTIMER pTimer, void *pvUser, uint64_t iTick); 725 /** Member timer callback. */ 726 void usageSamplerCallback(); 727 #endif /* VBOX_WITH_RESOURCE_USAGE_API */ 728 715 729 const InstanceType mType; 716 730 … … 745 759 friend class SessionMachine; 746 760 friend class SnapshotMachine; 747 748 #ifdef VBOX_WITH_RESOURCE_USAGE_API749 /** 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 */758 761 }; 759 762 … … 826 829 IConsole *aInitiator, MachineState_T *aMachineState, IProgress **aProgress); 827 830 828 /* We need to override and call real Machine's method. */829 STDMETHOD(GetProcessorUsage) (ULONG *user, ULONG *system);830 831 831 // public methods only for internal purposes 832 832
Note:
See TracChangeset
for help on using the changeset viewer.