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
f185a3ac
Commit
f185a3ac
authored
May 30, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
May 31, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl: Add KeLowerIrql stub.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53076
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
parent
ddca4eb8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
hal.spec
dlls/hal/hal.spec
+1
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+5
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-0
No files found.
dlls/hal/hal.spec
View file @
f185a3ac
...
...
@@ -71,7 +71,7 @@
@ stdcall -arch=i386 KeAcquireSpinLock(ptr ptr)
@ stub KeFlushWriteBuffer
@ stdcall -arch=arm,arm64,i386 KeGetCurrentIrql()
@ st
ub
KeLowerIrql
@ st
dcall -arch=x86_64 KeLowerIrql(long) ntoskrnl.exe.
KeLowerIrql
@ stdcall -ret64 KeQueryPerformanceCounter(ptr)
@ stub KeRaiseIrql
@ stub KeRaiseIrqlToDpcLevel
...
...
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
f185a3ac
...
...
@@ -4462,6 +4462,11 @@ void WINAPI KfRaiseIrql(KIRQL new, KIRQL *old)
FIXME
(
"new %u old %p: stub.
\n
"
,
new
,
old
);
}
void
WINAPI
KeLowerIrql
(
KIRQL
new
)
{
FIXME
(
"new %u: stub.
\n
"
,
new
);
}
#endif
/*****************************************************
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
f185a3ac
...
...
@@ -589,6 +589,7 @@
@ stub KeIsExecutingDpc
@ stdcall KeLeaveCriticalRegion()
@ stub KeLoaderBlock
@ stdcall -arch=x86_64 KeLowerIrql(long)
@ stub KeNumberProcessors
@ stub KeProfileInterrupt
@ stub KeProfileInterruptWithSource
...
...
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