summaryrefslogtreecommitdiff
path: root/src/VBox/Debugger/DBGPlugInDiggers.cpp
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2014-03-26 19:21:20 +0000
committer <>2014-05-08 15:03:54 +0000
commitfb123f93f9f5ce42c8e5785d2f8e0edaf951740e (patch)
treec2103d76aec5f1f10892cd1d3a38e24f665ae5db /src/VBox/Debugger/DBGPlugInDiggers.cpp
parent58ed4748338f9466599adfc8a9171280ed99e23f (diff)
downloadVirtualBox-master.tar.gz
Imported from /home/lorry/working-area/delta_VirtualBox/VirtualBox-4.3.10.tar.bz2.HEADVirtualBox-4.3.10master
Diffstat (limited to 'src/VBox/Debugger/DBGPlugInDiggers.cpp')
-rw-r--r--src/VBox/Debugger/DBGPlugInDiggers.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/VBox/Debugger/DBGPlugInDiggers.cpp b/src/VBox/Debugger/DBGPlugInDiggers.cpp
index 83839102..0622431e 100644
--- a/src/VBox/Debugger/DBGPlugInDiggers.cpp
+++ b/src/VBox/Debugger/DBGPlugInDiggers.cpp
@@ -4,7 +4,7 @@
*/
/*
- * Copyright (C) 2006-2010 Oracle Corporation
+ * Copyright (C) 2006-2013 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
@@ -27,7 +27,7 @@
#include <VBox/err.h>
-DECLEXPORT(int) DBGCPlugInEntry(DBGCPLUGINOP enmOperation, PVM pVM, uintptr_t uArg)
+DECLEXPORT(int) DBGCPlugInEntry(DBGCPLUGINOP enmOperation, PUVM pUVM, uintptr_t uArg)
{
static PCDBGFOSREG s_aPlugIns[] =
{
@@ -47,12 +47,12 @@ DECLEXPORT(int) DBGCPlugInEntry(DBGCPLUGINOP enmOperation, PVM pVM, uintptr_t uA
for (unsigned i = 0; i < RT_ELEMENTS(s_aPlugIns); i++)
{
- int rc = DBGFR3OSRegister(pVM, s_aPlugIns[i]);
+ int rc = DBGFR3OSRegister(pUVM, s_aPlugIns[i]);
if (RT_FAILURE(rc))
{
AssertRC(rc);
while (i-- > 0)
- DBGFR3OSDeregister(pVM, s_aPlugIns[i]);
+ DBGFR3OSDeregister(pUVM, s_aPlugIns[i]);
return rc;
}
}
@@ -63,7 +63,7 @@ DECLEXPORT(int) DBGCPlugInEntry(DBGCPLUGINOP enmOperation, PVM pVM, uintptr_t uA
{
for (unsigned i = 0; i < RT_ELEMENTS(s_aPlugIns); i++)
{
- int rc = DBGFR3OSDeregister(pVM, s_aPlugIns[i]);
+ int rc = DBGFR3OSDeregister(pUVM, s_aPlugIns[i]);
AssertRC(rc);
}
return VINF_SUCCESS;