Changeset 106891 in vbox
- Timestamp:
- Nov 8, 2024 3:30:44 PM (2 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ObjectsTracker.h
r106691 r106891 86 86 uint64_t aIdleTime, 87 87 IUnknown* aPtr); 88 89 TrackedObjectData(const TrackedObjectData & that); 88 90 89 91 ~TrackedObjectData(); -
trunk/src/VBox/Main/src-all/ObjectsTracker.cpp
r106882 r106891 69 69 m_State = TrackedObjectData::Valid; 70 70 Log2(("%s constructor \n", __FUNCTION__)); 71 } 72 73 TrackedObjectData::TrackedObjectData(const TrackedObjectData & that) 74 { 75 LogFlowFuncEnter(); 76 if (this != &that) 77 { 78 m_objId = that.m_objId; 79 m_classIID = that.m_classIID; 80 m_componentName = that.m_componentName; 81 m_lifeTime = that.m_lifeTime; 82 m_idleTime = that.m_idleTime; 83 m_pIface = that.m_pIface; 84 m_creationTime = that.m_creationTime; 85 m_lastAccessTime = that.m_lastAccessTime; 86 m_idleTimeStart = that.m_idleTimeStart; 87 m_fIdleTimeStart = that.m_fIdleTimeStart; 88 m_State = that.m_State; 89 } 71 90 } 72 91
Note:
See TracChangeset
for help on using the changeset viewer.