diff options
author | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2022-01-29 12:32:20 +0000 |
---|---|---|
committer | vboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f> | 2022-01-29 12:32:20 +0000 |
commit | 7f474907915010233614f88f509a37511f12dd1a (patch) | |
tree | a697c9b9b074ef41b2db2f413e271d9acd7ae455 /src | |
parent | 1f8fee2617001ccaf744ede22570ad762b8c4f8c (diff) | |
download | VirtualBox-svn-7f474907915010233614f88f509a37511f12dd1a.tar.gz |
Debugger,Main: Doxygen fixes. bugref:10074
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@93485 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src')
-rw-r--r-- | src/VBox/Debugger/DBGPlugInFreeBsd.cpp | 1 | ||||
-rw-r--r-- | src/VBox/Debugger/DBGPlugInSolaris.cpp | 2 | ||||
-rw-r--r-- | src/VBox/Debugger/VBoxDbgStatsQt.cpp | 6 | ||||
-rw-r--r-- | src/VBox/Main/src-client/MachineDebuggerImpl.cpp | 4 |
4 files changed, 10 insertions, 3 deletions
diff --git a/src/VBox/Debugger/DBGPlugInFreeBsd.cpp b/src/VBox/Debugger/DBGPlugInFreeBsd.cpp index d7f1c0dfa79..49d4b0d8f8b 100644 --- a/src/VBox/Debugger/DBGPlugInFreeBsd.cpp +++ b/src/VBox/Debugger/DBGPlugInFreeBsd.cpp @@ -217,6 +217,7 @@ static const uint8_t g_abNeedleInterp[] = "/red/herring"; * @returns VBox status code. * @param pThis The instance data. * @param pUVM The user mode VM handle. + * @param pVMM The VMM function table. * @param pszName The image name. * @param uKernelStart The kernel start address. * @param cbKernel Size of the kernel image. diff --git a/src/VBox/Debugger/DBGPlugInSolaris.cpp b/src/VBox/Debugger/DBGPlugInSolaris.cpp index 68dc94e00f9..61fed5b8863 100644 --- a/src/VBox/Debugger/DBGPlugInSolaris.cpp +++ b/src/VBox/Debugger/DBGPlugInSolaris.cpp @@ -442,6 +442,7 @@ static DECLCALLBACK(int) dbgDiggerSolarisQueryVersion(PUVM pUVM, PCVMMR3VTABLE * Processes a modctl_t. * * @param pUVM The user mode VM handle. + * @param pVMM The VMM function table. * @param pThis Our instance data. * @param pModCtl Pointer to the modctl structure. */ @@ -594,6 +595,7 @@ static void dbgDiggerSolarisProcessModCtl32(PUVM pUVM, PCVMMR3VTABLE pVMM, PDBGD * Processes a modctl_t. * * @param pUVM The user mode VM handle. + * @param pVMM The VMM function table. * @param pThis Our instance data. * @param pModCtl Pointer to the modctl structure. */ diff --git a/src/VBox/Debugger/VBoxDbgStatsQt.cpp b/src/VBox/Debugger/VBoxDbgStatsQt.cpp index fdd0612e410..62b3d861634 100644 --- a/src/VBox/Debugger/VBoxDbgStatsQt.cpp +++ b/src/VBox/Debugger/VBoxDbgStatsQt.cpp @@ -584,7 +584,7 @@ public: * @param a_pParent The parent object. NULL is fine. * @param a_pVMM The VMM function table. */ - VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE pVMM); + VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE a_pVMM); /** Destructor */ virtual ~VBoxDbgStatsModelVM(); @@ -2683,8 +2683,8 @@ VBoxDbgStatsModel::logTree(QModelIndex &a_rRoot, bool a_fReleaseLog) const */ -VBoxDbgStatsModelVM::VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE pVMM) - : VBoxDbgStatsModel(a_pParent), VBoxDbgBase(a_pDbgGui), m_pVMM(pVMM) +VBoxDbgStatsModelVM::VBoxDbgStatsModelVM(VBoxDbgGui *a_pDbgGui, QString &a_rPatStr, QObject *a_pParent, PCVMMR3VTABLE a_pVMM) + : VBoxDbgStatsModel(a_pParent), VBoxDbgBase(a_pDbgGui), m_pVMM(a_pVMM) { /* * Create a model containing the STAM entries matching the pattern. diff --git a/src/VBox/Main/src-client/MachineDebuggerImpl.cpp b/src/VBox/Main/src-client/MachineDebuggerImpl.cpp index 91987ad6bd8..ffe768b5c09 100644 --- a/src/VBox/Main/src-client/MachineDebuggerImpl.cpp +++ b/src/VBox/Main/src-client/MachineDebuggerImpl.cpp @@ -1439,6 +1439,10 @@ HRESULT MachineDebugger::takeGuestSample(const com::Utf8Str &aFilename, ULONG aU * Hack for getting the user mode VM handle (UVM) and VMM function table. * * @returns COM status code + * @param aMagicVersion The VMMR3VTABLE_MAGIC_VERSION value of the + * caller so we can check that the function table + * is compatible. (Otherwise, the caller can't + * safely release the UVM reference.) * @param aUVM Where to store the vm handle. Since there is no * uintptr_t in COM, we're using the max integer. (No, * ULONG is not pointer sized!) |