mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
fb87fbb11d
[ntoskrnl-Stubs] Removed patch to add stub for KeDelayExecutionThread (fixed upstream). Removed patch to add stub for PsRemoveLoadImageNotifyRoutine (fixed upstream). [wined3d-Geforce_425M] Removed patch to add wined3d detection for GeForce GT 425M (accepted upstream).
43 lines
1.5 KiB
Diff
43 lines
1.5 KiB
Diff
From 4dd6a88936cd579a5a293ef63d65e73fffb0dce6 Mon Sep 17 00:00:00 2001
|
|
From: Christian Costa <titan.costa@gmail.com>
|
|
Date: Fri, 30 Jan 2015 00:10:53 +0100
|
|
Subject: ntoskrnl.exe: Fix IoReleaseCancelSpinLock argument.
|
|
|
|
---
|
|
dlls/ntoskrnl.exe/ntoskrnl.c | 4 ++--
|
|
dlls/ntoskrnl.exe/ntoskrnl.exe.spec | 2 +-
|
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/dlls/ntoskrnl.exe/ntoskrnl.c b/dlls/ntoskrnl.exe/ntoskrnl.c
|
|
index c3a7e2a..85cbf01 100644
|
|
--- a/dlls/ntoskrnl.exe/ntoskrnl.c
|
|
+++ b/dlls/ntoskrnl.exe/ntoskrnl.c
|
|
@@ -332,9 +332,9 @@ void WINAPI IoAcquireCancelSpinLock(PKIRQL irql)
|
|
/***********************************************************************
|
|
* IoReleaseCancelSpinLock (NTOSKRNL.EXE.@)
|
|
*/
|
|
-void WINAPI IoReleaseCancelSpinLock(PKIRQL irql)
|
|
+void WINAPI IoReleaseCancelSpinLock(KIRQL irql)
|
|
{
|
|
- FIXME("(%p): stub\n", irql);
|
|
+ FIXME("(%u): stub\n", irql);
|
|
}
|
|
|
|
|
|
diff --git a/dlls/ntoskrnl.exe/ntoskrnl.exe.spec b/dlls/ntoskrnl.exe/ntoskrnl.exe.spec
|
|
index bae3678..8ece531 100644
|
|
--- a/dlls/ntoskrnl.exe/ntoskrnl.exe.spec
|
|
+++ b/dlls/ntoskrnl.exe/ntoskrnl.exe.spec
|
|
@@ -432,7 +432,7 @@
|
|
@ stub IoRegisterLastChanceShutdownNotification
|
|
@ stdcall IoRegisterPlugPlayNotification(long long ptr ptr ptr ptr ptr)
|
|
@ stdcall IoRegisterShutdownNotification(ptr)
|
|
-@ stdcall IoReleaseCancelSpinLock(ptr)
|
|
+@ stdcall IoReleaseCancelSpinLock(long)
|
|
@ stub IoReleaseRemoveLockAndWaitEx
|
|
@ stub IoReleaseRemoveLockEx
|
|
@ stub IoReleaseVpbSpinLock
|
|
--
|
|
2.2.2
|
|
|