VirtualBox

Ignore:
Timestamp:
Oct 7, 2015 12:33:00 PM (9 years ago)
Author:
vboxsync
Message:

VBoxGuest,VBoxService,Doxyfile.Core: fixes.

Location:
trunk/src/VBox/Additions/common/VBoxGuest
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c

    r58053 r58089  
    5656/** The device name. */
    5757#define DEVICE_NAME             "vboxguest"
    58 /** The device name for the device node open to everyone.. */
     58/** The device name for the device node open to everyone. */
    5959#define DEVICE_NAME_USER        "vboxuser"
    6060/** The name of the PCI driver */
     
    334334 * @param   iIrq            The IRQ number.
    335335 * @param   pvDevId         The device ID, a pointer to g_DevExt.
    336  * @param   pvRegs          Register set. Removed in 2.6.19.
    337  */
    338 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 19)
    339 static irqreturn_t vboxguestLinuxISR(int iIrrq, void *pvDevId)
     336 * @param   pRegs           Register set. Removed in 2.6.19.
     337 */
     338#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 19) && !defined(DOXYGEN_RUNNING)
     339static irqreturn_t vboxguestLinuxISR(int iIrq, void *pvDevId)
    340340#else
    341 static irqreturn_t vboxguestLinuxISR(int iIrrq, void *pvDevId, struct pt_regs *pRegs)
     341static irqreturn_t vboxguestLinuxISR(int iIrq, void *pvDevId, struct pt_regs *pRegs)
    342342#endif
    343343{
     
    742742 * Device I/O Control entry point.
    743743 *
     744 * @param   pInode      Associated inode pointer.
    744745 * @param   pFilp       Associated file pointer.
    745746 * @param   uCmd        The function specified to ioctl().
  • trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-os2.cpp

    r58053 r58089  
    224224 * @returns VBox status code.
    225225 * @retval  VERR_VERSION_MISMATCH       The VMMDev memory didn't meet our expectations.
    226  *
    227  * @param   pDevExt     The device extension.
    228226 */
    229227static int vboxGuestOS2MapMemory(void)
  • trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-win.cpp

    r58053 r58089  
    555555 * Do not delete DevExt here.
    556556 *
    557  * @param   pDrvObj     Driver object.
     557 * @param   pDevObj     Device object.
    558558 */
    559559NTSTATUS vbgdNtCleanup(PDEVICE_OBJECT pDevObj)
  • trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp

    r58053 r58089  
    502502 * @returns VBox status code.
    503503 * @param   pDevExt         The device extension.
    504  * @param   pSession        The session.
    505504 * @param   cBalloonChunks  The new size of the balloon in chunks of 1MB.
    506505 * @param   pfHandleInR3    Where to return the handle-in-ring3 indicator
     
    727726 *
    728727 * @param   pDevExt     The device extension.
    729  * @param   pDevExt     The session.  Can be NULL at unload.
     728 * @param   pSession    The session.  Can be NULL at unload.
    730729 */
    731730static void vgdrvCloseMemBalloon(PVBOXGUESTDEVEXT pDevExt, PVBOXGUESTSESSION pSession)
     
    17681767 *
    17691768 * @returns VINF_SUCCESS or VERR_PERMISSION_DENIED.
     1769 * @param   pDevExt             The device extension.
    17701770 * @param   pSession            The calling session.
    17711771 * @param   enmType             The request type.
     
    24592459 * @param   cbData              Size of the buffer.
    24602460 * @param   pcbDataReturned     Where to store the amount of returned data. Can be NULL.
     2461 * @param   fUserSession        Copy of VBOXGUESTSESSION::fUserSession for the
     2462 *                              call.  True normal user, false root user.
    24612463 */
    24622464static int vgdrvIoCtl_Log(PVBOXGUESTDEVEXT pDevExt, const char *pch, size_t cbData, size_t *pcbDataReturned, bool fUserSession)
     
    29562958 *
    29572959 * @returns VBox status code.
    2958  * @param   fMask       The new mask.
     2960 * @param   pDevExt             The device extension.
     2961 * @param   pReq                The request.
    29592962 */
    29602963static int vgdrvUpdateCapabilitiesOnHostWithReqAndLock(PVBOXGUESTDEVEXT pDevExt, VMMDevReqGuestCapabilities2 *pReq)
  • trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestIDC-unix.c.h

    r58053 r58089  
    9898 *
    9999 * @returns VBox error code.
    100  * @param   pvState             Opaque pointer to the session object.
     100 * @param   pvSession           Opaque pointer to the session object.
    101101 */
    102102DECLEXPORT(int) VBOXCALL VBoxGuestIDCClose(void *pvSession)
  • trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h

    r58053 r58089  
    3737#include <VBox/VBoxGuestLib.h>
    3838
    39 /** @def VBOXGUEST_USE_WAKE_UP_LIST
     39/** @def VBOXGUEST_USE_DEFERRED_WAKE_UP
    4040 * Defer wake-up of waiting thread when defined. */
    4141#if defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS) || defined(DOXYGEN_RUNNING)
     
    8888typedef struct VBOXGUESTMEMBALLOON
    8989{
    90     /** Mutex protecting the members below from concurrent access.. */
     90    /** Mutex protecting the members below from concurrent access. */
    9191    RTSEMFASTMUTEX              hMtx;
    9292    /** The current number of chunks in the balloon. */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette