Changeset 24022 in vbox
- Timestamp:
- Oct 23, 2009 11:31:34 AM (15 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r23728 r24022 228 228 /* RTThreadPreemptIsPending - not necessary */ 229 229 /* RTThreadPreemptIsPendingTrusty - not necessary */ 230 /* RTThreadPreemptDisable - not necessary */ 230 DECLASM(void) UNWIND_WRAP(RTThreadPreemptDisable)(PRTTHREADPREEMPTSTATE pState); 231 231 DECLASM(void) UNWIND_WRAP(RTThreadPreemptRestore)(RTTHREADPREEMPTSTATE pState); 232 232 /* RTLogDefaultInstance - a bit of a gamble, but we do not want the overhead! */ … … 395 395 { "RTThreadPreemptIsPendingTrusty", (void *)RTThreadPreemptIsPendingTrusty }, 396 396 { "RTThreadPreemptIsPossible", (void *)RTThreadPreemptIsPossible }, 397 { "RTThreadPreemptDisable", (void *) RTThreadPreemptDisable},397 { "RTThreadPreemptDisable", (void *)UNWIND_WRAP(RTThreadPreemptDisable) }, 398 398 { "RTThreadPreemptRestore", (void *)UNWIND_WRAP(RTThreadPreemptRestore) }, 399 399 { "RTThreadIsInInterrupt", (void *)RTThreadIsInInterrupt }, -
trunk/src/VBox/HostDrivers/Support/win/SUPDrvA-win.asm
r23610 r24022 162 162 ;NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptIsPending - not necessary 163 163 ;NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptIsPendingTrusty - not necessary 164 ;NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptDisable - not necessary 164 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptDisable 165 165 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptRestore 166 166 ;NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTLogDefaultInstance - a bit of a gamble, but we do not want the overhead!
Note:
See TracChangeset
for help on using the changeset viewer.