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
bd456a92
Commit
bd456a92
authored
Mar 12, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Mar 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add more mutex stubs.
parent
82cd229c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+21
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+2
-2
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
bd456a92
...
...
@@ -1099,6 +1099,27 @@ void WINAPI KeInitializeMutex(PRKMUTEX Mutex, ULONG Level)
}
/***********************************************************************
* KeWaitForMutexObject (NTOSKRNL.EXE.@)
*/
NTSTATUS
WINAPI
KeWaitForMutexObject
(
PRKMUTEX
Mutex
,
KWAIT_REASON
WaitReason
,
KPROCESSOR_MODE
WaitMode
,
BOOLEAN
Alertable
,
PLARGE_INTEGER
Timeout
)
{
FIXME
(
"stub: %p, %d, %d, %d, %p
\n
"
,
Mutex
,
WaitReason
,
WaitMode
,
Alertable
,
Timeout
);
return
STATUS_NOT_IMPLEMENTED
;
}
/***********************************************************************
* KeReleaseMutex (NTOSKRNL.EXE.@)
*/
LONG
WINAPI
KeReleaseMutex
(
PRKMUTEX
Mutex
,
BOOLEAN
Wait
)
{
FIXME
(
"stub: %p, %d
\n
"
,
Mutex
,
Wait
);
return
STATUS_NOT_IMPLEMENTED
;
}
/***********************************************************************
* KeInitializeSemaphore (NTOSKRNL.EXE.@)
*/
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
bd456a92
...
...
@@ -587,7 +587,7 @@
@ stub KeRegisterBugCheckReasonCallback
@ stub KeReleaseInterruptSpinLock
@ stub KeReleaseMutant
@ st
ub KeReleaseMutex
@ st
dcall KeReleaseMutex(ptr long)
@ stdcall KeReleaseSemaphore(ptr long long long)
@ stub KeReleaseSpinLockFromDpcLevel
@ stub KeRemoveByKeyDeviceQueue
...
...
@@ -628,7 +628,7 @@
@ stub KeUpdateSystemTime
@ stub KeUserModeCallback
@ stub KeWaitForMultipleObjects
@ st
ub KeWaitForMutexObject
@ st
dcall KeWaitForMutexObject(ptr long long long ptr)
@ stdcall KeWaitForSingleObject(ptr long long long ptr)
@ stub KiBugCheckData
@ stub KiCoprocessorError
...
...
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