Changeset 86327 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 28, 2020 4:20:50 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 140613
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/VM.cpp
r85121 r86327 650 650 */ 651 651 void *pvUser = NULL; 652 rc = DBGC TcpCreate(pUVM, &pvUser);652 rc = DBGCIoCreate(pUVM, &pvUser); 653 653 if ( RT_SUCCESS(rc) 654 654 || rc == VERR_NET_ADDRESS_IN_USE) … … 669 669 } 670 670 #ifdef VBOX_WITH_DEBUGGER 671 DBGC TcpTerminate(pUVM, pUVM->vm.s.pvDBGC);671 DBGCIoTerminate(pUVM, pUVM->vm.s.pvDBGC); 672 672 pUVM->vm.s.pvDBGC = NULL; 673 673 } … … 2197 2197 AssertRC(rc); 2198 2198 #ifdef VBOX_WITH_DEBUGGER 2199 rc = DBGC TcpTerminate(pUVM, pUVM->vm.s.pvDBGC);2199 rc = DBGCIoTerminate(pUVM, pUVM->vm.s.pvDBGC); 2200 2200 pUVM->vm.s.pvDBGC = NULL; 2201 2201 #endif
Note:
See TracChangeset
for help on using the changeset viewer.