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
362ceb2e
Commit
362ceb2e
authored
Jun 21, 2017
by
Austin English
Committed by
Alexandre Julliard
Jun 21, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add KeReleaseSpinLock stub.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f2589035
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
hal.spec
dlls/hal/hal.spec
+1
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+8
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-0
No files found.
dlls/hal/hal.spec
View file @
362ceb2e
...
...
@@ -76,7 +76,7 @@
@ stub KeRaiseIrql
@ stub KeRaiseIrqlToDpcLevel
@ stub KeRaiseIrqlToSynchLevel
@ st
ub
KeReleaseSpinLock
@ st
dcall KeReleaseSpinLock(ptr long) ntoskrnl.exe.
KeReleaseSpinLock
@ stub KeStallExecutionProcessor
@ stub READ_PORT_BUFFER_UCHAR
@ stub READ_PORT_BUFFER_ULONG
...
...
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
362ceb2e
...
...
@@ -3251,3 +3251,11 @@ KIRQL WINAPI KeAcquireSpinLockRaiseToDpc(KSPIN_LOCK *spinlock)
FIXME
(
"stub: %p
\n
"
,
spinlock
);
return
0
;
}
/***********************************************************************
* KeReleaseSpinLock (NTOSKRNL.EXE.@)
*/
VOID
WINAPI
KeReleaseSpinLock
(
KSPIN_LOCK
*
spinlock
,
KIRQL
irql
)
{
FIXME
(
"stub: %p %u
\n
"
,
spinlock
,
irql
);
}
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
362ceb2e
...
...
@@ -592,6 +592,7 @@
@ stub KeReleaseMutant
@ stdcall KeReleaseMutex(ptr long)
@ stdcall KeReleaseSemaphore(ptr long long long)
@ stdcall KeReleaseSpinLock(ptr long)
@ stub KeReleaseSpinLockFromDpcLevel
@ stub KeRemoveByKeyDeviceQueue
@ stub KeRemoveByKeyDeviceQueueIfBusy
...
...
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