Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
83b9fdb2
Commit
83b9fdb2
authored
Mar 07, 2017
by
Sebastian Lackner
Committed by
Alexandre Julliard
Mar 07, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add KeReleaseInStackQueuedSpinLock stub.
Signed-off-by:
Sebastian Lackner
<
sebastian@fds-team.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f3ccfc09
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
hal.spec
dlls/hal/hal.spec
+1
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+13
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-0
No files found.
dlls/hal/hal.spec
View file @
83b9fdb2
...
...
@@ -9,7 +9,7 @@
@ stub KeAcquireQueuedSpinLock
@ stub KeAcquireQueuedSpinLockRaiseToSynch
@ stub KeAcquireSpinLockRaiseToSynch
@ st
ub
KeReleaseInStackQueuedSpinLock
@ st
dcall -norelay KeReleaseInStackQueuedSpinLock(ptr) ntoskrnl.exe.
KeReleaseInStackQueuedSpinLock
@ stub KeReleaseQueuedSpinLock
@ stub KeTryToAcquireQueuedSpinLock
@ stub KeTryToAcquireQueuedSpinLockRaiseToSynch
...
...
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
83b9fdb2
...
...
@@ -3201,3 +3201,16 @@ void WINAPI KeAcquireInStackQueuedSpinLock( KSPIN_LOCK *spinlock, KLOCK_QUEUE_HA
{
FIXME
(
"stub: %p %p
\n
"
,
spinlock
,
handle
);
}
/***********************************************************************
* KeReleaseInStackQueuedSpinLock (NTOSKRNL.EXE.@)
*/
#ifdef DEFINE_FASTCALL1_ENTRYPOINT
DEFINE_FASTCALL1_ENTRYPOINT
(
KeReleaseInStackQueuedSpinLock
)
void
WINAPI
__regs_KeReleaseInStackQueuedSpinLock
(
KLOCK_QUEUE_HANDLE
*
handle
)
#else
void
WINAPI
KeReleaseInStackQueuedSpinLock
(
KLOCK_QUEUE_HANDLE
*
handle
)
#endif
{
FIXME
(
"stub: %p
\n
"
,
handle
);
}
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
83b9fdb2
...
...
@@ -43,6 +43,7 @@
@ stdcall -norelay IofCompleteRequest(ptr long)
@ stdcall -norelay KeAcquireInStackQueuedSpinLock(ptr ptr)
@ stub KeAcquireInStackQueuedSpinLockAtDpcLevel
@ stdcall -norelay KeReleaseInStackQueuedSpinLock(ptr)
@ stub KeReleaseInStackQueuedSpinLockFromDpcLevel
@ stub KeSetTimeUpdateNotifyRoutine
@ stub KefAcquireSpinLockAtDpcLevel
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment