Changeset 58089 in vbox for trunk/src/VBox/Additions/common/VBoxGuest
- Timestamp:
- Oct 7, 2015 12:33:00 PM (9 years ago)
- 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 56 56 /** The device name. */ 57 57 #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. */ 59 59 #define DEVICE_NAME_USER "vboxuser" 60 60 /** The name of the PCI driver */ … … 334 334 * @param iIrq The IRQ number. 335 335 * @param pvDevId The device ID, a pointer to g_DevExt. 336 * @param p vRegsRegister set. Removed in 2.6.19.337 */ 338 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 19) 339 static irqreturn_t vboxguestLinuxISR(int iIr rq, 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) 339 static irqreturn_t vboxguestLinuxISR(int iIrq, void *pvDevId) 340 340 #else 341 static irqreturn_t vboxguestLinuxISR(int iIr rq, void *pvDevId, struct pt_regs *pRegs)341 static irqreturn_t vboxguestLinuxISR(int iIrq, void *pvDevId, struct pt_regs *pRegs) 342 342 #endif 343 343 { … … 742 742 * Device I/O Control entry point. 743 743 * 744 * @param pInode Associated inode pointer. 744 745 * @param pFilp Associated file pointer. 745 746 * @param uCmd The function specified to ioctl(). -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-os2.cpp
r58053 r58089 224 224 * @returns VBox status code. 225 225 * @retval VERR_VERSION_MISMATCH The VMMDev memory didn't meet our expectations. 226 *227 * @param pDevExt The device extension.228 226 */ 229 227 static int vboxGuestOS2MapMemory(void) -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-win.cpp
r58053 r58089 555 555 * Do not delete DevExt here. 556 556 * 557 * @param pD rvObj Driverobject.557 * @param pDevObj Device object. 558 558 */ 559 559 NTSTATUS vbgdNtCleanup(PDEVICE_OBJECT pDevObj) -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r58053 r58089 502 502 * @returns VBox status code. 503 503 * @param pDevExt The device extension. 504 * @param pSession The session.505 504 * @param cBalloonChunks The new size of the balloon in chunks of 1MB. 506 505 * @param pfHandleInR3 Where to return the handle-in-ring3 indicator … … 727 726 * 728 727 * @param pDevExt The device extension. 729 * @param p DevExtThe session. Can be NULL at unload.728 * @param pSession The session. Can be NULL at unload. 730 729 */ 731 730 static void vgdrvCloseMemBalloon(PVBOXGUESTDEVEXT pDevExt, PVBOXGUESTSESSION pSession) … … 1768 1767 * 1769 1768 * @returns VINF_SUCCESS or VERR_PERMISSION_DENIED. 1769 * @param pDevExt The device extension. 1770 1770 * @param pSession The calling session. 1771 1771 * @param enmType The request type. … … 2459 2459 * @param cbData Size of the buffer. 2460 2460 * @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. 2461 2463 */ 2462 2464 static int vgdrvIoCtl_Log(PVBOXGUESTDEVEXT pDevExt, const char *pch, size_t cbData, size_t *pcbDataReturned, bool fUserSession) … … 2956 2958 * 2957 2959 * @returns VBox status code. 2958 * @param fMask The new mask. 2960 * @param pDevExt The device extension. 2961 * @param pReq The request. 2959 2962 */ 2960 2963 static int vgdrvUpdateCapabilitiesOnHostWithReqAndLock(PVBOXGUESTDEVEXT pDevExt, VMMDevReqGuestCapabilities2 *pReq) -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestIDC-unix.c.h
r58053 r58089 98 98 * 99 99 * @returns VBox error code. 100 * @param pvS tateOpaque pointer to the session object.100 * @param pvSession Opaque pointer to the session object. 101 101 */ 102 102 DECLEXPORT(int) VBOXCALL VBoxGuestIDCClose(void *pvSession) -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h
r58053 r58089 37 37 #include <VBox/VBoxGuestLib.h> 38 38 39 /** @def VBOXGUEST_USE_ WAKE_UP_LIST39 /** @def VBOXGUEST_USE_DEFERRED_WAKE_UP 40 40 * Defer wake-up of waiting thread when defined. */ 41 41 #if defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS) || defined(RT_OS_WINDOWS) || defined(DOXYGEN_RUNNING) … … 88 88 typedef struct VBOXGUESTMEMBALLOON 89 89 { 90 /** Mutex protecting the members below from concurrent access. .*/90 /** Mutex protecting the members below from concurrent access. */ 91 91 RTSEMFASTMUTEX hMtx; 92 92 /** The current number of chunks in the balloon. */
Note:
See TracChangeset
for help on using the changeset viewer.