Changeset 60278 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Mar 31, 2016 5:04:53 PM (9 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/nt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp
r57978 r60278 232 232 * @param uUserCtx The user context argument (PRTMPARGS). 233 233 */ 234 static ULONG_PTR __stdcallrtmpNtOnAllBroadcastIpiWrapper(ULONG_PTR uUserCtx)234 static ULONG_PTR rtmpNtOnAllBroadcastIpiWrapper(ULONG_PTR uUserCtx) 235 235 { 236 236 PRTMPARGS pArgs = (PRTMPARGS)uUserCtx; … … 247 247 * @param uUserCtx The user context argument (PRTMPARGS). 248 248 */ 249 static ULONG_PTR __stdcallrtmpNtOnOthersBroadcastIpiWrapper(ULONG_PTR uUserCtx)249 static ULONG_PTR rtmpNtOnOthersBroadcastIpiWrapper(ULONG_PTR uUserCtx) 250 250 { 251 251 PRTMPARGS pArgs = (PRTMPARGS)uUserCtx; … … 266 266 * @param uUserCtx The user context argument (PRTMPARGS). 267 267 */ 268 static ULONG_PTR __stdcallrtmpNtOnPairBroadcastIpiWrapper(ULONG_PTR uUserCtx)268 static ULONG_PTR rtmpNtOnPairBroadcastIpiWrapper(ULONG_PTR uUserCtx) 269 269 { 270 270 PRTMPARGS pArgs = (PRTMPARGS)uUserCtx; … … 286 286 * @param uUserCtx The user context argument (PRTMPARGS). 287 287 */ 288 static ULONG_PTR __stdcallrtmpNtOnSpecificBroadcastIpiWrapper(ULONG_PTR uUserCtx)288 static ULONG_PTR rtmpNtOnSpecificBroadcastIpiWrapper(ULONG_PTR uUserCtx) 289 289 { 290 290 PRTMPARGS pArgs = (PRTMPARGS)uUserCtx; … … 342 342 * @param SystemArgument2 Argument specified by KeInsertQueueDpc 343 343 */ 344 static VOID __stdcallrtmpNtDPCWrapper(IN PKDPC Dpc, IN PVOID DeferredContext, IN PVOID SystemArgument1, IN PVOID SystemArgument2)344 static VOID rtmpNtDPCWrapper(IN PKDPC Dpc, IN PVOID DeferredContext, IN PVOID SystemArgument1, IN PVOID SystemArgument2) 345 345 { 346 346 PRTMPARGS pArgs = (PRTMPARGS)DeferredContext; … … 601 601 * @param SystemArgument2 Argument specified by KeInsertQueueDpc 602 602 */ 603 static VOID __stdcallrtMpNtOnSpecificDpcWrapper(IN PKDPC Dpc, IN PVOID DeferredContext,604 603 static VOID rtMpNtOnSpecificDpcWrapper(IN PKDPC Dpc, IN PVOID DeferredContext, 604 IN PVOID SystemArgument1, IN PVOID SystemArgument2) 605 605 { 606 606 PRTMPNTONSPECIFICARGS pArgs = (PRTMPNTONSPECIFICARGS)DeferredContext; -
trunk/src/VBox/Runtime/r0drv/nt/thread2-r0drv-nt.cpp
r57358 r60278 110 110 * @param pvArg Pointer to the argument package. 111 111 */ 112 static VOID __stdcallrtThreadNativeMain(PVOID pvArg)112 static VOID rtThreadNativeMain(PVOID pvArg) 113 113 { 114 114 PETHREAD Self = PsGetCurrentThread();
Note:
See TracChangeset
for help on using the changeset viewer.