Index: /trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibCpuHotPlug.cpp
===================================================================
--- /trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibCpuHotPlug.cpp	(revision 58169)
+++ /trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibCpuHotPlug.cpp	(revision 58170)
@@ -61,5 +61,5 @@
  * This will disable the CPU hot plugging events.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  */
 VBGLR3DECL(int) VbglR3CpuHotPlugTerm(void)
Index: /trunk/src/VBox/Debugger/DBGCCommands.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCCommands.cpp	(revision 58169)
+++ /trunk/src/VBox/Debugger/DBGCCommands.cpp	(revision 58170)
@@ -338,5 +338,5 @@
  * Register one or more external commands.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   paCommands      Pointer to an array of command descriptors.
  *                          The commands must be unique. It's not possible
@@ -386,5 +386,5 @@
  * DBGCRegisterCommands().
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   paCommands      Pointer to an array of command descriptors
  *                          as given to DBGCRegisterCommands().
Index: /trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp	(revision 58169)
+++ /trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp	(revision 58170)
@@ -3781,5 +3781,5 @@
  * Search memory, worker for the 's' and 's?' functions.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pCmdHlp     Pointer to the command helper functions.
  * @param   pUVM        The user mode VM handle.
Index: /trunk/src/VBox/Debugger/DBGCTcp.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCTcp.cpp	(revision 58169)
+++ /trunk/src/VBox/Debugger/DBGCTcp.cpp	(revision 58170)
@@ -180,5 +180,5 @@
  * Serve a TCP Server connection.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @returns VERR_TCP_SERVER_STOP to terminate the server loop forcing
  *          the RTTcpCreateServer() call to return.
@@ -210,5 +210,5 @@
  * Spawns a new thread with a TCP based debugging console service.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        The user mode VM handle.
  * @param   ppvData     Where to store a pointer to the instance data.
@@ -273,5 +273,5 @@
  * Terminates any running TCP base debugger console service.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM            The user mode VM handle.
  * @param   pvData          The data returned by DBGCTcpCreate.
Index: /trunk/src/VBox/Debugger/DBGConsole.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGConsole.cpp	(revision 58169)
+++ /trunk/src/VBox/Debugger/DBGConsole.cpp	(revision 58170)
@@ -386,5 +386,5 @@
  * Will read any available input looking for a '\n' to reset the buffer on.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDbgc   Debugger console instance data.
  */
@@ -430,5 +430,5 @@
  * Read input and do some preprocessing.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *          In addition to the iWrite and achInput, cInputLines is maintained.
  *          In case of an input overflow the fInputOverflow flag will be set.
@@ -531,5 +531,5 @@
  * Reads input, parses it and executes commands on '\n'.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDbgc       Debugger console instance data.
  * @param   fNoExecute  Indicates that no commands should actually be executed.
@@ -604,5 +604,5 @@
  * Processes debugger events.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDbgc   DBGC Instance data.
  * @param   pEvent  Pointer to event data.
@@ -784,5 +784,5 @@
  * The caller must not call function this unless pDbgc->fLog is set.
  *
- * @returns VBox status. (output related)
+ * @returns VBox status code. (output related)
  * @param   pDbgc   Debugger console instance data.
  */
@@ -807,5 +807,5 @@
  * Run the debugger console.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDbgc   Pointer to the debugger console instance data.
  */
Index: /trunk/src/VBox/Devices/Audio/DevIchHda.cpp
===================================================================
--- /trunk/src/VBox/Devices/Audio/DevIchHda.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Audio/DevIchHda.cpp	(revision 58170)
@@ -3357,5 +3357,5 @@
  * Reset notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  *
Index: /trunk/src/VBox/Devices/EFI/DevEFI.cpp
===================================================================
--- /trunk/src/VBox/Devices/EFI/DevEFI.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/EFI/DevEFI.cpp	(revision 58170)
@@ -1899,5 +1899,5 @@
  * Parse EFI ROM headers and find entry points.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pThis    The device instance data.
  */
@@ -1935,5 +1935,5 @@
  * Load EFI ROM file into the memory.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pThis       The device instance data.
  * @param   pCfg        Configuration node handle for the device.
Index: /trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
===================================================================
--- /trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp	(revision 58170)
@@ -4445,5 +4445,5 @@
  * Power On notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  *
Index: /trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp
===================================================================
--- /trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp	(revision 58170)
@@ -2425,5 +2425,5 @@
 /** The guest submitted a command buffer. Verify the buffer size and invoke corresponding handler.
  *
- * @return VBox status.
+ * @return VBox status code.
  * @param pvHandler      The VBVA channel context.
  * @param u16ChannelInfo Command code.
Index: /trunk/src/VBox/Devices/Input/DevPS2.cpp
===================================================================
--- /trunk/src/VBox/Devices/Input/DevPS2.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Input/DevPS2.cpp	(revision 58170)
@@ -1499,5 +1499,5 @@
  * Reset notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  */
Index: /trunk/src/VBox/Devices/Input/DrvKeyboardQueue.cpp
===================================================================
--- /trunk/src/VBox/Devices/Input/DrvKeyboardQueue.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Input/DrvKeyboardQueue.cpp	(revision 58170)
@@ -331,5 +331,5 @@
  * Power On notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The drive instance data.
  */
@@ -344,5 +344,5 @@
  * Reset notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The drive instance data.
  */
@@ -357,5 +357,5 @@
  * Suspend notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The drive instance data.
  */
@@ -370,5 +370,5 @@
  * Resume notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The drive instance data.
  */
Index: /trunk/src/VBox/Devices/Input/DrvMouseQueue.cpp
===================================================================
--- /trunk/src/VBox/Devices/Input/DrvMouseQueue.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Input/DrvMouseQueue.cpp	(revision 58170)
@@ -259,5 +259,5 @@
  * Power On notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The drive instance data.
  */
@@ -272,5 +272,5 @@
  * Reset notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The drive instance data.
  */
@@ -285,5 +285,5 @@
  * Suspend notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The drive instance data.
  */
@@ -298,5 +298,5 @@
  * Resume notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The drive instance data.
  */
Index: /trunk/src/VBox/Devices/Network/DevE1000.cpp
===================================================================
--- /trunk/src/VBox/Devices/Network/DevE1000.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Network/DevE1000.cpp	(revision 58170)
@@ -7312,5 +7312,5 @@
  * We need to free non-VM resources only.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  * @thread  EMT
Index: /trunk/src/VBox/Devices/Network/DevINIP.cpp
===================================================================
--- /trunk/src/VBox/Devices/Network/DevINIP.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Network/DevINIP.cpp	(revision 58170)
@@ -575,5 +575,5 @@
  * resources can be freed correctly.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  */
Index: /trunk/src/VBox/Devices/Storage/DevAHCI.cpp
===================================================================
--- /trunk/src/VBox/Devices/Storage/DevAHCI.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Storage/DevAHCI.cpp	(revision 58170)
@@ -233,5 +233,5 @@
  * Data processing callback
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pAhciReq    The task state.
  * @param   ppvProc     Where to store the pointer to the buffer holding the processed data on success.
Index: /trunk/src/VBox/Devices/Storage/DevATA.cpp
===================================================================
--- /trunk/src/VBox/Devices/Storage/DevATA.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Storage/DevATA.cpp	(revision 58170)
@@ -6605,5 +6605,5 @@
  * Resume notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  */
@@ -7037,5 +7037,5 @@
  * Power Off notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  */
@@ -7050,5 +7050,5 @@
  * Suspend notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  */
@@ -7087,5 +7087,5 @@
  * Common reset worker for ataR3Reset and ataR3Construct.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  * @param   fConstruct  Indicates who is calling.
Index: /trunk/src/VBox/Devices/Storage/DrvBlock.cpp
===================================================================
--- /trunk/src/VBox/Devices/Storage/DrvBlock.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/Storage/DrvBlock.cpp	(revision 58170)
@@ -833,5 +833,5 @@
  * Reset notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The driver instance data.
  */
Index: /trunk/src/VBox/Devices/USB/DevOHCI.cpp
===================================================================
--- /trunk/src/VBox/Devices/USB/DevOHCI.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/USB/DevOHCI.cpp	(revision 58170)
@@ -5625,5 +5625,5 @@
  * Reset notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  */
@@ -5648,5 +5648,5 @@
  * Resume notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  */
@@ -5728,5 +5728,5 @@
  * Relocate device instance data.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  * @param   offDelta    The relocation delta.
@@ -5746,5 +5746,5 @@
  * resources can be freed correctly.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  */
Index: /trunk/src/VBox/Devices/USB/usbip/USBProxyDevice-usbip.cpp
===================================================================
--- /trunk/src/VBox/Devices/USB/usbip/USBProxyDevice-usbip.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/USB/usbip/USBProxyDevice-usbip.cpp	(revision 58170)
@@ -731,5 +731,5 @@
  * Connects to the USB/IP host and claims the device given in the proxy device data.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pProxyDevUsbIp    The USB/IP proxy device data.
  */
Index: /trunk/src/VBox/Devices/VirtIO/Virtio.cpp
===================================================================
--- /trunk/src/VBox/Devices/VirtIO/Virtio.cpp	(revision 58169)
+++ /trunk/src/VBox/Devices/VirtIO/Virtio.cpp	(revision 58170)
@@ -883,5 +883,5 @@
  * We need to free non-VM resources only.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pState      The device state structure.
  */
Index: /trunk/src/VBox/ExtPacks/BusMouseSample/BusMouse.cpp
===================================================================
--- /trunk/src/VBox/ExtPacks/BusMouseSample/BusMouse.cpp	(revision 58169)
+++ /trunk/src/VBox/ExtPacks/BusMouseSample/BusMouse.cpp	(revision 58170)
@@ -551,5 +551,5 @@
  * Reset notification.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDevIns     The device instance data.
  */
Index: /trunk/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp
===================================================================
--- /trunk/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp	(revision 58169)
+++ /trunk/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp	(revision 58170)
@@ -353,5 +353,5 @@
 /** Process a guest buffer.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param pArea        Area which supposed to contain the buffer.
  * @param pChannelInfo The channel pool.
@@ -398,5 +398,5 @@
 /** Register a new HGSMI channel by index.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param pChannelInfo      The channel pool managed by the caller.
  * @param u8Channel         Index of the channel.
Index: /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 58169)
+++ /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 58170)
@@ -10222,5 +10222,5 @@
  * Notification about a medium eject.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pInterface      Pointer to the interface structure containing the called function pointer.
  * @param   uLUN            The unit number.
@@ -10295,5 +10295,5 @@
  * Destruct a status driver instance.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The driver instance data.
  */
Index: /trunk/src/VBox/Main/src-client/DisplayImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/DisplayImpl.cpp	(revision 58169)
+++ /trunk/src/VBox/Main/src-client/DisplayImpl.cpp	(revision 58170)
@@ -4106,5 +4106,5 @@
  * Destruct a display driver instance.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The driver instance data.
  */
Index: /trunk/src/VBox/Main/src-client/KeyboardImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/KeyboardImpl.cpp	(revision 58169)
+++ /trunk/src/VBox/Main/src-client/KeyboardImpl.cpp	(revision 58170)
@@ -337,5 +337,5 @@
  * Destruct a keyboard driver instance.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The driver instance data.
  */
Index: /trunk/src/VBox/Main/src-client/MouseImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/MouseImpl.cpp	(revision 58169)
+++ /trunk/src/VBox/Main/src-client/MouseImpl.cpp	(revision 58170)
@@ -1185,5 +1185,5 @@
  * Destruct a mouse driver instance.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pDrvIns     The driver instance data.
  */
Index: /trunk/src/VBox/Main/src-server/USBProxyService.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/USBProxyService.cpp	(revision 58169)
+++ /trunk/src/VBox/Main/src-server/USBProxyService.cpp	(revision 58170)
@@ -640,5 +640,5 @@
  * Starts the service.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  */
 int USBProxyService::start(void)
@@ -678,5 +678,5 @@
  * Stops the service.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  */
 int USBProxyService::stop(void)
@@ -789,5 +789,5 @@
  * The default implementation in USBProxyService just a dummy stub.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  */
 int USBProxyService::interruptWait(void)
Index: /trunk/src/VBox/Main/src-server/linux/USBGetDevices.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/linux/USBGetDevices.cpp	(revision 58169)
+++ /trunk/src/VBox/Main/src-server/linux/USBGetDevices.cpp	(revision 58170)
@@ -1091,5 +1091,5 @@
  * and usbfs always returns port number zero.
  *
- * @returns VBox status. pu8Port is set on success.
+ * @returns VBox status code. pu8Port is set on success.
  * @param   pszPath     The sysfs path to parse.
  * @param   pu8Port     Where to store the port number.
Index: /trunk/src/VBox/Storage/ISCSI.cpp
===================================================================
--- /trunk/src/VBox/Storage/ISCSI.cpp	(revision 58169)
+++ /trunk/src/VBox/Storage/ISCSI.cpp	(revision 58170)
@@ -1205,5 +1205,5 @@
  * Full Feature Phase.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pImage      The iSCSI connection state to be used.
  */
@@ -1720,5 +1720,5 @@
  * Detach from an iSCSI target.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pImage      The iSCSI connection state to be used.
  */
@@ -1810,5 +1810,5 @@
  * Full Feature Phase.
  *
- * @returns VBOX status.
+ * @returns VBox status code.
  * @param   pImage      The iSCSI connection state to be used.
  * @param   pRequest    Command descriptor. Contains all information about
@@ -2976,5 +2976,5 @@
  * Retrieve the value for a given key from the key=value buffer.
  *
- * @returns VBOX status.
+ * @returns VBox status code.
  * @param   pbBuf       Buffer containing key=value pairs.
  * @param   cbBuf       Length of buffer with key=value pairs.
@@ -3108,5 +3108,5 @@
  * Retrieve the relevant parameter values and update the initiator state.
  *
- * @returns VBOX status.
+ * @returns VBox status code.
  * @param   pImage      Current iSCSI initiator state.
  * @param   pbBuf       Buffer containing key=value pairs.
Index: /trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp	(revision 58170)
@@ -2359,5 +2359,5 @@
  * This function will change the any of the cs and ss register with DPL=0 to DPL=1.
  *
- * @returns VBox status. (recompiler failure)
+ * @returns VBox status code. (recompiler failure)
  * @param   pVCpu       The cross context virtual CPU structure.
  * @see     @ref pg_raw
Index: /trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/PGMAll.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMAll/PGMAll.cpp	(revision 58170)
@@ -823,5 +823,5 @@
  * Gets effective page information (from the VMM page directory).
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure.
  * @param   GCPtr       Guest Context virtual address of the page.
@@ -1104,5 +1104,5 @@
  * calling this function.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure.
  * @param   GCPtr       The address.
@@ -1207,5 +1207,5 @@
  * Gets the SHADOW page directory pointer for the specified address (long mode).
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure.
  * @param   GCPtr       The address.
@@ -1252,5 +1252,5 @@
  * backing pages in case the PDPT or PML4 entry is missing.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure.
  * @param   GCPtr       The address.
@@ -1401,5 +1401,5 @@
  * purpose.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure of the calling EMT.
  * @param   GCPtr       Guest Context virtual address of the page.
@@ -1491,5 +1491,5 @@
  * Sets (replaces) the page flags for a range of pages in the guest's tables.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure.
  * @param   GCPtr       The address of the first page.
Index: /trunk/src/VBox/VMM/VMMAll/PGMAllGst.h
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/PGMAllGst.h	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMAll/PGMAllGst.h	(revision 58170)
@@ -253,5 +253,5 @@
  * purpose.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure.
  * @param   GCPtr       Guest Context virtual address of the page.
Index: /trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMAll/PGMAllMap.cpp	(revision 58170)
@@ -117,5 +117,5 @@
  * Sets (replaces) the page flags for a range of pages in a mapping.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   GCPtr       Virtual address of the first page in the range.
@@ -664,5 +664,5 @@
  * Ignored if mappings are disabled (i.e. if HM is enabled).
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pShwPageCR3 CR3 root page
@@ -702,5 +702,5 @@
  * Ignored if mappings are disabled (i.e. if HM is enabled).
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pShwPageCR3 CR3 root page
@@ -828,5 +828,5 @@
  * Checks and resolves (ring 3 only) guest conflicts with the guest mappings.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM                 The cross context VM structure.
  */
Index: /trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp	(revision 58170)
@@ -3194,5 +3194,5 @@
  * MMIO and access handlers.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pvDst       The destination address.
@@ -3266,5 +3266,5 @@
  * This will bypass MMIO and access handlers.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   GCPhysDst   The GC physical address of the destination.
@@ -3340,5 +3340,5 @@
  * bypass access handlers and not set any accessed bits.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure of the calling EMT.
  * @param   pvDst       The destination address.
@@ -3431,5 +3431,5 @@
  * bypass access handlers and not set dirty or accessed bits.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure of the calling EMT.
  * @param   GCPtrDst    The destination address (GC pointer).
@@ -3511,5 +3511,5 @@
  * If you don't want to set the dirty bit, use PGMPhysSimpleWriteGCPtr().
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure of the calling EMT.
  * @param   GCPtrDst    The destination address (GC pointer).
Index: /trunk/src/VBox/VMM/VMMAll/PGMAllShw.h
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/PGMAllShw.h	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMAll/PGMAllShw.h	(revision 58170)
@@ -181,5 +181,5 @@
  * Gets effective page information (from the VMM page directory).
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVCpu       The cross context virtual CPU structure.
  * @param   GCPtr       Guest Context virtual address of the page.
Index: /trunk/src/VBox/VMM/VMMAll/TMAll.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/TMAll.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMAll/TMAll.cpp	(revision 58170)
@@ -1222,5 +1222,5 @@
  * Arm a timer with a (new) expire time.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pTimer          Timer handle as returned by one of the create functions.
  * @param   u64Expire       New expire time.
@@ -1526,5 +1526,5 @@
  * Arm a timer with a expire time relative to the current time.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pTimer          Timer handle as returned by one of the create functions.
  * @param   cTicksToNext    Clock ticks until the next time expiration.
@@ -1851,5 +1851,5 @@
  * Use TMR3TimerArm() to "un-stop" the timer.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pTimer          Timer handle as returned by one of the create functions.
  */
@@ -2124,5 +2124,5 @@
  * Arm a timer with a (new) expire time relative to current time.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pTimer          Timer handle as returned by one of the create functions.
  * @param   cMilliesToNext  Number of milliseconds to the next tick.
@@ -2154,5 +2154,5 @@
  * Arm a timer with a (new) expire time relative to current time.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pTimer          Timer handle as returned by one of the create functions.
  * @param   cMicrosToNext   Number of microseconds to the next tick.
@@ -2184,5 +2184,5 @@
  * Arm a timer with a (new) expire time relative to current time.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pTimer          Timer handle as returned by one of the create functions.
  * @param   cNanosToNext    Number of nanoseconds to the next tick.
Index: /trunk/src/VBox/VMM/VMMR3/DBGF.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/DBGF.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/DBGF.cpp	(revision 58170)
@@ -461,5 +461,5 @@
  * and perhaps process any high priority pending actions (none yet).
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   enmEvent    The event to be sent.
@@ -519,5 +519,5 @@
  * Send a generic debugger event which takes no data.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   enmEvent    The event to send.
@@ -542,5 +542,5 @@
  * Send a debugger event which takes the full source file location.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   enmEvent    The event to send.
@@ -565,5 +565,5 @@
  * Send a debugger event which takes the full source file location.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   enmEvent    The event to send.
@@ -608,5 +608,5 @@
  * Send a debugger event which takes the two assertion messages.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   enmEvent    The event to send.
@@ -635,5 +635,5 @@
  * Figure out which breakpoint it is and notify the debugger.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   enmEvent    DBGFEVENT_BREAKPOINT_HYPER or DBGFEVENT_BREAKPOINT.
@@ -683,5 +683,5 @@
  * Waits for the debugger to respond.
  *
- * @returns VBox status. (clearify)
+ * @returns VBox status code. (clearify)
  * @param   pVM     The cross context VM structure.
  */
@@ -806,5 +806,5 @@
  * value returned in the *pfResumeExecution indicator.
  *
- * @returns VBox status. (clearify!)
+ * @returns VBox status code. (clearify!)
  * @param   pVM                 The cross context VM structure.
  * @param   enmCmd              The command in question.
@@ -1037,5 +1037,5 @@
  * Wait for a debug event.
  *
- * @returns VBox status. Will not return VBOX_INTERRUPTED.
+ * @returns VBox status code. Will not return VBOX_INTERRUPTED.
  * @param   pUVM        The user mode VM handle.
  * @param   cMillies    Number of millis to wait.
@@ -1074,5 +1074,5 @@
  * arrives. Until that time it's not possible to issue any new commands.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        The user mode VM handle.
  */
@@ -1159,5 +1159,5 @@
  * There is no receipt event on this command.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        The user mode VM handle.
  */
@@ -1190,5 +1190,5 @@
  * The current implementation is not reliable, so don't rely on the event coming.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM    The user mode VM handle.
  * @param   idCpu   The ID of the CPU to single step on.
Index: /trunk/src/VBox/VMM/VMMR3/MM.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/MM.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/MM.cpp	(revision 58170)
@@ -718,5 +718,5 @@
  * Convert HC Physical address to HC Virtual address.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   HCPhys      The host context virtual address.
Index: /trunk/src/VBox/VMM/VMMR3/MMHeap.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/MMHeap.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/MMHeap.cpp	(revision 58170)
@@ -46,5 +46,5 @@
  * Allocate and initialize a heap structure and it's associated substructures.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM    Pointer to the user mode VM structure.
  * @param   ppHeap  Where to store the heap pointer.
Index: /trunk/src/VBox/VMM/VMMR3/MMHyper.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/MMHyper.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/MMHyper.cpp	(revision 58170)
@@ -104,5 +104,5 @@
  * the heap to initialize.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  */
 int mmR3HyperInit(PVM pVM)
@@ -190,5 +190,5 @@
  * Cleans up the hypervisor heap.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  */
 int mmR3HyperTerm(PVM pVM)
@@ -207,5 +207,5 @@
  * by the time this function is called.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  */
 VMMR3DECL(int) MMR3HyperInitFinalize(PVM pVM)
@@ -1332,5 +1332,5 @@
  * Convert hypervisor HC physical address to HC virtual address.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   HCPhys      Host context physical address.
@@ -1351,5 +1351,5 @@
  * Read hypervisor memory from GC virtual address.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pvDst       Destination address (HC of course).
Index: /trunk/src/VBox/VMM/VMMR3/MMPagePool.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/MMPagePool.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/MMPagePool.cpp	(revision 58170)
@@ -52,5 +52,5 @@
  * Initializes the page pool
  *
- * @return  VBox status.
+ * @return  VBox status code.
  * @param   pVM     The cross context VM structure.
  * @thread  The Emulation Thread.
Index: /trunk/src/VBox/VMM/VMMR3/MMUkHeap.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/MMUkHeap.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/MMUkHeap.cpp	(revision 58170)
@@ -48,5 +48,5 @@
  * kernel accessible memory on the first alloc call.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM    Pointer to the user mode VM structure.
  * @param   ppHeap  Where to store the heap pointer.
Index: /trunk/src/VBox/VMM/VMMR3/PDMAsyncCompletion.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/PDMAsyncCompletion.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/PDMAsyncCompletion.cpp	(revision 58170)
@@ -158,5 +158,5 @@
  * Internal worker for the creation apis
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   ppTemplate      Where to store the template handle.
Index: /trunk/src/VBox/VMM/VMMR3/PDMCritSect.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/PDMCritSect.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/PDMCritSect.cpp	(revision 58170)
@@ -93,5 +93,5 @@
  * automatically deleted.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *          First error code, rest is lost.
  * @param   pVM             The cross context VM structure.
Index: /trunk/src/VBox/VMM/VMMR3/PDMLdr.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/PDMLdr.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/PDMLdr.cpp	(revision 58170)
@@ -1460,5 +1460,5 @@
  * Enumerate all PDM modules.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pfnCallback     Function to call back for each of the modules.
Index: /trunk/src/VBox/VMM/VMMR3/PDMQueue.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/PDMQueue.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/PDMQueue.cpp	(revision 58170)
@@ -49,5 +49,5 @@
  * Internal worker for the queue creation apis.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM                 The cross context VM structure.
  * @param   cbItem              Item size.
Index: /trunk/src/VBox/VMM/VMMR3/PGMMap.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/PGMMap.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/PGMMap.cpp	(revision 58170)
@@ -1328,5 +1328,5 @@
  * to a HC virtual one.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pvDst       The destination address (HC of course).
Index: /trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp	(revision 58170)
@@ -3116,5 +3116,5 @@
  * anything first.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM                 The cross context VM structure.
  * @param   pDevIns             The device instance owning the ROM.
@@ -3469,5 +3469,5 @@
  * is configured to be preallocated).
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM                 The cross context VM structure.
  * @param   pDevIns             The device instance owning the ROM.
Index: /trunk/src/VBox/VMM/VMMR3/SSM.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/SSM.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/SSM.cpp	(revision 58170)
@@ -1210,5 +1210,5 @@
  * Register a PDM Devices data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pVM             The cross context VM structure.
@@ -1266,5 +1266,5 @@
  * Register a PDM driver data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pVM             The cross context VM structure.
@@ -1318,5 +1318,5 @@
  * Register a PDM USB device data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pVM             The cross context VM structure.
@@ -1370,5 +1370,5 @@
  * Register a internal data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pVM             The cross context VM structure.
@@ -1419,5 +1419,5 @@
  * Register an external data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pUVM            The user mode VM handle.
@@ -1505,5 +1505,5 @@
  * Deregister one or more PDM Device data units.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pVM             The cross context VM structure.
@@ -1582,5 +1582,5 @@
  * Deregister one ore more PDM Driver data units.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pDrvIns         Driver instance.
@@ -1656,5 +1656,5 @@
  * Deregister one or more PDM USB device data units.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pUsbIns         USB device instance.
@@ -1726,5 +1726,5 @@
  * Deregister a data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   enmType         Unit type
@@ -1783,5 +1783,5 @@
  * Deregister an internal data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pszName         Data unit name.
@@ -1797,5 +1797,5 @@
  * Deregister an external data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM            The user mode VM structure.
  * @param   pszName         Data unit name.
@@ -3272,5 +3272,5 @@
  * All buffers and compressor instances are flushed and destroyed.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  */
@@ -3993,5 +3993,5 @@
  * Saves a boolean item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   fBool           Item to save.
@@ -4009,5 +4009,5 @@
  * Saves a 8-bit unsigned integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   u8              Item to save.
@@ -4024,5 +4024,5 @@
  * Saves a 8-bit signed integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   i8              Item to save.
@@ -4039,5 +4039,5 @@
  * Saves a 16-bit unsigned integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   u16             Item to save.
@@ -4054,5 +4054,5 @@
  * Saves a 16-bit signed integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   i16             Item to save.
@@ -4069,5 +4069,5 @@
  * Saves a 32-bit unsigned integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   u32             Item to save.
@@ -4084,5 +4084,5 @@
  * Saves a 32-bit signed integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   i32             Item to save.
@@ -4099,5 +4099,5 @@
  * Saves a 64-bit unsigned integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   u64             Item to save.
@@ -4114,5 +4114,5 @@
  * Saves a 64-bit signed integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   i64             Item to save.
@@ -4129,5 +4129,5 @@
  * Saves a 128-bit unsigned integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   u128            Item to save.
@@ -4144,5 +4144,5 @@
  * Saves a 128-bit signed integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   i128            Item to save.
@@ -4159,5 +4159,5 @@
  * Saves a VBox unsigned integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   u               Item to save.
@@ -4174,5 +4174,5 @@
  * Saves a VBox signed integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   i               Item to save.
@@ -4189,5 +4189,5 @@
  * Saves a GC natural unsigned integer item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   u               Item to save.
@@ -4206,5 +4206,5 @@
  * Saves a GC unsigned integer register item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   u               Item to save.
@@ -4221,5 +4221,5 @@
  * Saves a 32 bits GC physical address item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   GCPhys          The item to save
@@ -4236,5 +4236,5 @@
  * Saves a 64 bits GC physical address item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   GCPhys          The item to save
@@ -4251,5 +4251,5 @@
  * Saves a GC physical address item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   GCPhys          The item to save
@@ -4266,5 +4266,5 @@
  * Saves a GC virtual address item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   GCPtr           The item to save.
@@ -4281,5 +4281,5 @@
  * Saves an RC virtual address item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   RCPtr           The item to save.
@@ -4296,5 +4296,5 @@
  * Saves a GC virtual address (represented as an unsigned integer) item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   GCPtr           The item to save.
@@ -4311,5 +4311,5 @@
  * Saves a I/O port address item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   IOPort          The item to save.
@@ -4326,5 +4326,5 @@
  * Saves a selector item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   Sel             The item to save.
@@ -4341,5 +4341,5 @@
  * Saves a memory item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pv              Item to save.
@@ -4357,5 +4357,5 @@
  * Saves a zero terminated string item to the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   psz             Item to save.
@@ -4629,5 +4629,5 @@
  * This must always be called on a handled returned by SSMR3LiveSave.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pSSM            The SSM handle returned by SSMR3LiveSave.
@@ -5054,5 +5054,5 @@
  * Saves the rest of the state on EMT0.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pSSM            The SSM handle returned by SSMR3LiveSave.
@@ -5200,5 +5200,5 @@
  * Start VM save operation.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pVM             The cross context VM structure.
@@ -5673,5 +5673,5 @@
  * Continue a live state saving operation on the worker thread.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pSSM            The SSM handle returned by SSMR3LiveSave.
@@ -5715,5 +5715,5 @@
  * fails.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pVM             The cross context VM structure.
@@ -6972,5 +6972,5 @@
  * Loads a boolean item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pfBool          Where to store the item.
@@ -6994,5 +6994,5 @@
  * Loads a 8-bit unsigned integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pu8             Where to store the item.
@@ -7009,5 +7009,5 @@
  * Loads a 8-bit signed integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pi8             Where to store the item.
@@ -7024,5 +7024,5 @@
  * Loads a 16-bit unsigned integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pu16            Where to store the item.
@@ -7039,5 +7039,5 @@
  * Loads a 16-bit signed integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pi16            Where to store the item.
@@ -7054,5 +7054,5 @@
  * Loads a 32-bit unsigned integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pu32            Where to store the item.
@@ -7069,5 +7069,5 @@
  * Loads a 32-bit signed integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pi32            Where to store the item.
@@ -7084,5 +7084,5 @@
  * Loads a 64-bit unsigned integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pu64            Where to store the item.
@@ -7099,5 +7099,5 @@
  * Loads a 64-bit signed integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pi64            Where to store the item.
@@ -7114,5 +7114,5 @@
  * Loads a 128-bit unsigned integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pu128           Where to store the item.
@@ -7129,5 +7129,5 @@
  * Loads a 128-bit signed integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pi128           Where to store the item.
@@ -7144,5 +7144,5 @@
  * Loads a VBox unsigned integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pu              Where to store the integer.
@@ -7159,5 +7159,5 @@
  * Loads a VBox signed integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pi              Where to store the integer.
@@ -7174,5 +7174,5 @@
  * Loads a GC natural unsigned integer item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pu              Where to store the integer.
@@ -7190,5 +7190,5 @@
  * Loads a GC unsigned integer register item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pu              Where to store the integer.
@@ -7204,5 +7204,5 @@
  * Loads a 32 bits GC physical address item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pGCPhys         Where to store the GC physical address.
@@ -7219,5 +7219,5 @@
  * Loads a 64 bits GC physical address item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pGCPhys         Where to store the GC physical address.
@@ -7234,5 +7234,5 @@
  * Loads a GC physical address item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pGCPhys         Where to store the GC physical address.
@@ -7284,5 +7284,5 @@
  * Put functions are not affected.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   cbGCPtr         Size of RTGCPTR
@@ -7312,5 +7312,5 @@
  * Loads a GC virtual address item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pGCPtr          Where to store the GC virtual address.
@@ -7354,5 +7354,5 @@
  * Loads a GC virtual address (represented as unsigned integer) item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pGCPtr          Where to store the GC virtual address.
@@ -7368,5 +7368,5 @@
  * Loads an RC virtual address item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pRCPtr          Where to store the RC virtual address.
@@ -7383,5 +7383,5 @@
  * Loads a I/O port address item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pIOPort         Where to store the I/O port address.
@@ -7398,5 +7398,5 @@
  * Loads a selector item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pSel            Where to store the selector.
@@ -7413,5 +7413,5 @@
  * Loads a memory item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   pv              Where to store the item.
@@ -7429,5 +7429,5 @@
  * Loads a string item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   psz             Where to store the item.
@@ -7443,5 +7443,5 @@
  * Loads a string item from the current data unit.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM            The saved state handle.
  * @param   psz             Where to store the item.
@@ -7550,5 +7550,5 @@
  * Calculate the checksum of a file portion.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pStrm       The stream handle
  * @param   off         Where to start checksumming.
@@ -7726,5 +7726,5 @@
  * validations.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pSSM                The saved state handle.  A number of field will
  *                              be updated, mostly header related information.
@@ -8743,5 +8743,5 @@
  * Load VM save operation.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  *
  * @param   pVM             The cross context VM structure.
Index: /trunk/src/VBox/VMM/VMMR3/STAM.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/STAM.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/STAM.cpp	(revision 58170)
@@ -379,5 +379,5 @@
  * It is not possible to register the same sample twice.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        Pointer to the user mode VM structure.
  * @param   pvSample    Pointer to the sample.
@@ -409,5 +409,5 @@
  * It is not possible to register the same sample twice.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pvSample    Pointer to the sample.
@@ -430,5 +430,5 @@
  * RTStrPrintf like fashion.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        Pointer to the user mode VM structure.
  * @param   pvSample    Pointer to the sample.
@@ -455,5 +455,5 @@
  * RTStrPrintf like fashion.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pvSample    Pointer to the sample.
@@ -480,5 +480,5 @@
  * RTStrPrintfV like fashion.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        The user mode VM structure.
  * @param   pvSample    Pointer to the sample.
@@ -507,5 +507,5 @@
  * RTStrPrintfV like fashion.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pvSample    Pointer to the sample.
@@ -528,5 +528,5 @@
  * and name given in an RTStrPrintf like fashion.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pvSample    Pointer to the sample.
@@ -555,5 +555,5 @@
  * Same as STAMR3RegisterCallback() except for the ellipsis which is a va_list here.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pvSample    Pointer to the sample.
@@ -1241,5 +1241,5 @@
  * Internal worker for the different register calls.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        Pointer to the user mode VM structure.
  * @param   pvSample    Pointer to the sample.
@@ -1470,5 +1470,5 @@
  * temporary samples.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        Pointer to the user mode VM structure.
  * @param   pvSample    Pointer to the sample registered with STAMR3Register().
@@ -1547,5 +1547,5 @@
  * names.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        Pointer to the user mode VM structure.
  * @param   pszPat      The name pattern.
@@ -1569,5 +1569,5 @@
  * names.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        Pointer to the user mode VM structure.
  * @param   pszPatFmt   The name pattern format string.
@@ -1589,5 +1589,5 @@
  * names.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM        Pointer to the user mode VM structure.
  * @param   pszPatFmt   The name pattern format string.
@@ -1616,5 +1616,5 @@
  * It's possible to select a subset of the samples.
  *
- * @returns VBox status. (Basically, it cannot fail.)
+ * @returns VBox status code. (Basically, it cannot fail.)
  * @param   pUVM        The user mode VM handle.
  * @param   pszPat      The name matching pattern. See somewhere_where_this_is_described_in_detail.
@@ -1785,5 +1785,5 @@
  * It's possible to select a subset of the samples.
  *
- * @returns VBox status. (Basically, it cannot fail.)
+ * @returns VBox status code. (Basically, it cannot fail.)
  * @param   pUVM            The user mode VM handle.
  * @param   pszPat          The name matching pattern. See somewhere_where_this_is_described_in_detail.
@@ -2073,5 +2073,5 @@
  * Releases a statistics snapshot returned by STAMR3Snapshot().
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM            The user mode VM handle.
  * @param   pszSnapshot     The snapshot data pointer returned by STAMR3Snapshot().
@@ -2090,5 +2090,5 @@
  * Dumps the selected statistics to the log.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM            Pointer to the user mode VM structure.
  * @param   pszPat          The name matching pattern. See somewhere_where_this_is_described_in_detail.
@@ -2130,5 +2130,5 @@
  * Dumps the selected statistics to the release log.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM            Pointer to the user mode VM structure.
  * @param   pszPat          The name matching pattern. See somewhere_where_this_is_described_in_detail.
@@ -2169,5 +2169,5 @@
  * Prints the selected statistics to standard out.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pUVM            The user mode VM handle.
  * @param   pszPat          The name matching pattern. See somewhere_where_this_is_described_in_detail.
Index: /trunk/src/VBox/VMM/VMMR3/TM.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR3/TM.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMR3/TM.cpp	(revision 58170)
@@ -1463,5 +1463,5 @@
  * Creates a device timer.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pDevIns         Device instance.
@@ -1504,5 +1504,5 @@
  * Creates a USB device timer.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pUsbIns         The USB device instance.
@@ -1548,5 +1548,5 @@
  * Creates a driver timer.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pDrvIns         Driver instance.
@@ -1584,5 +1584,5 @@
  * Creates an internal timer.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   enmClock        The clock to use on this timer.
@@ -1647,5 +1647,5 @@
  * Destroy a timer
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pTimer          Timer handle as returned by one of the create functions.
  */
@@ -1811,5 +1811,5 @@
  * Destroy all timers owned by a device.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pDevIns         Device which timers should be destroyed.
@@ -1844,5 +1844,5 @@
  * Destroy all timers owned by a USB device.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pUsbIns         USB device which timers should be destroyed.
@@ -1877,5 +1877,5 @@
  * Destroy all timers owned by a driver.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM             The cross context VM structure.
  * @param   pDrvIns         Driver which timers should be destroyed.
@@ -2572,5 +2572,5 @@
  * Saves the state of a timer to a saved state.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pTimer          Timer to save.
  * @param   pSSM            Save State Manager handle.
@@ -2614,5 +2614,5 @@
  * Loads the state of a timer from a saved state.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pTimer          Timer to restore.
  * @param   pSSM            Save State Manager handle.
Index: /trunk/src/VBox/VMM/VMMRC/MMRamRC.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMRC/MMRamRC.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMRC/MMRamRC.cpp	(revision 58170)
@@ -75,5 +75,5 @@
  * Read data in guest context with \#PF control.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pDst        Where to store the read data.
@@ -132,5 +132,5 @@
  * Write data in guest context with \#PF control.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   pDst        Where to write the data.
Index: /trunk/src/VBox/VMM/VMMRC/TRPMRC.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMRC/TRPMRC.cpp	(revision 58169)
+++ /trunk/src/VBox/VMM/VMMRC/TRPMRC.cpp	(revision 58170)
@@ -46,5 +46,5 @@
  * To uninstall the temporary handler, call this function with pfnHandler set to NULL.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   iTrap       Trap number to install handler [0..255].
Index: /trunk/src/VBox/VMM/include/PGMInline.h
===================================================================
--- /trunk/src/VBox/VMM/include/PGMInline.h	(revision 58169)
+++ /trunk/src/VBox/VMM/include/PGMInline.h	(revision 58170)
@@ -197,5 +197,5 @@
  * Convert GC Phys to HC Phys.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @param   pVM         The cross context VM structure.
  * @param   GCPhys      The GC physical address.
Index: /trunk/src/VBox/ValidationKit/utils/cpu/cidet.h
===================================================================
--- /trunk/src/VBox/ValidationKit/utils/cpu/cidet.h	(revision 58169)
+++ /trunk/src/VBox/ValidationKit/utils/cpu/cidet.h	(revision 58170)
@@ -107,5 +107,5 @@
  * Callback function for setting up the input and expected output CPU contexts.
  *
- * @returns VBox status.
+ * @returns VBox status code.
  * @retval  VINF_EOF when static test data wraps (first entry is returned).
  * @retval  VERR_NO_DATA if @a fInvalid is set and there are no invalid operand
