Changeset 44342 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Jan 23, 2013 5:43:40 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83299
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/VBoxDbgBase.cpp
r44340 r44342 106 106 VBoxDbgBase::atStateChange(PVM pVM, VMSTATE enmState, VMSTATE /*enmOldState*/, void *pvUser) 107 107 { 108 VBoxDbgBase *pThis = (VBoxDbgBase *)pvUser; 108 VBoxDbgBase *pThis = (VBoxDbgBase *)pvUser; NOREF(pVM); 109 109 switch (enmState) 110 110 { … … 112 112 { 113 113 /** @todo need to do some locking here? */ 114 PUVM pUVM = ASMAtomicXchgPtrT(& m_pUVM, NULL, PUVM);114 PUVM pUVM = ASMAtomicXchgPtrT(&pThis->m_pUVM, NULL, PUVM); 115 115 if (pUVM) 116 116 {
Note:
See TracChangeset
for help on using the changeset viewer.