- Timestamp:
- Oct 19, 2021 8:28:44 AM (3 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r91799 r91836 2099 2099 SUPR0DECL(PGVM) SUPR0GetSessionGVM(PSUPDRVSESSION pSession); 2100 2100 SUPR0DECL(int) SUPR0SetSessionVM(PSUPDRVSESSION pSession, PGVM pGVM, PVM pVM); 2101 SUPR0DECL(RTUID) SUPR0GetSessionUid(PSUPDRVSESSION pSession); 2101 2102 2102 2103 SUPR0DECL(int) SUPR0LockMem(PSUPDRVSESSION pSession, RTR3PTR pvR3, uint32_t cPages, PRTHCPHYS paPages); -
trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp
r91805 r91836 300 300 SUPEXP_STK_BACK( 1, SUPR0GetSessionVM), 301 301 SUPEXP_STK_BACK( 3, SUPR0SetSessionVM), 302 SUPEXP_STK_BACK( 1, SUPR0GetSessionUid), 302 303 SUPEXP_STK_BACK( 6, SUPR0TscDeltaMeasureBySetIndex), 303 304 SUPEXP_STK_BACK( 1, SUPR0TracerDeregisterDrv), … … 3330 3331 3331 3332 3333 /** 3334 * For getting SUPDRVSESSION::Uid. 3335 * 3336 * @returns The session UID. NIL_RTUID if invalid pointer or not successfully 3337 * set by the host code. 3338 * @param pSession The session of the current thread. 3339 */ 3340 SUPR0DECL(RTUID) SUPR0GetSessionUid(PSUPDRVSESSION pSession) 3341 { 3342 AssertReturn(SUP_IS_SESSION_VALID(pSession), NIL_RTUID); 3343 return pSession->Uid; 3344 } 3345 SUPR0_EXPORT_SYMBOL(SUPR0GetSessionUid); 3346 3347 3332 3348 /** @copydoc RTLogDefaultInstanceEx 3333 3349 * @remarks To allow overriding RTLogDefaultInstanceEx locally. */ -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r91800 r91836 223 223 * - nothing 224 224 */ 225 #define SUPDRV_IOC_VERSION 0x0033000 0225 #define SUPDRV_IOC_VERSION 0x00330001 226 226 227 227 /** SUP_IOCTL_COOKIE. */
Note:
See TracChangeset
for help on using the changeset viewer.