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
1a45f75d
Commit
1a45f75d
authored
Sep 28, 2015
by
Austin English
Committed by
Alexandre Julliard
Oct 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Add KeEnterCriticalRegion/KeLeaveCriticalRegion stubs.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
parent
b0a9d16c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+16
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+2
-2
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
1a45f75d
...
...
@@ -2304,3 +2304,19 @@ PLIST_ENTRY WINAPI ExfInterlockedRemoveHeadList(PLIST_ENTRY head, PKSPIN_LOCK lo
FIXME
(
"(%p %p) stub
\n
"
,
head
,
lock
);
return
ExInterlockedRemoveHeadList
(
head
,
lock
);
}
/***********************************************************************
* KeEnterCriticalRegion (NTOSKRNL.EXE.@)
*/
void
WINAPI
KeEnterCriticalRegion
(
void
)
{
FIXME
(
": stub
\n
"
);
}
/***********************************************************************
* KeLeaveCriticalRegion (NTOSKRNL.EXE.@)
*/
void
WINAPI
KeLeaveCriticalRegion
(
void
)
{
FIXME
(
": stub
\n
"
);
}
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
1a45f75d
...
...
@@ -523,7 +523,7 @@
@ stub KeDeregisterBugCheckReasonCallback
@ stub KeDetachProcess
@ stub KeDisconnectInterrupt
@ st
ub KeEnterCriticalRegion
@ st
dcall KeEnterCriticalRegion()
@ stub KeEnterKernelDebugger
@ stub KeFindConfigurationEntry
@ stub KeFindConfigurationNextEntry
...
...
@@ -563,7 +563,7 @@
@ stub KeInsertQueueDpc
@ stub KeIsAttachedProcess
@ stub KeIsExecutingDpc
@ st
ub KeLeaveCriticalRegion
@ st
dcall KeLeaveCriticalRegion()
@ stub KeLoaderBlock
@ stub KeNumberProcessors
@ stub KeProfileInterrupt
...
...
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