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
ddca4eb8
Commit
ddca4eb8
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 KfRaiseIrql stub.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53076
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
parent
526fc34a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+9
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
ddca4eb8
...
...
@@ -4455,6 +4455,15 @@ NTSTATUS WINAPI KdEnableDebugger(void)
return
STATUS_DEBUGGER_INACTIVE
;
}
#ifdef __x86_64__
void
WINAPI
KfRaiseIrql
(
KIRQL
new
,
KIRQL
*
old
)
{
FIXME
(
"new %u old %p: stub.
\n
"
,
new
,
old
);
}
#endif
/*****************************************************
* DllMain
*/
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
ddca4eb8
...
...
@@ -659,6 +659,7 @@
@ stdcall KeWaitForMultipleObjects(long ptr long long long long ptr ptr)
@ stdcall KeWaitForMutexObject(ptr long long long ptr)
@ stdcall KeWaitForSingleObject(ptr long long long ptr)
@ stdcall -arch=x86_64 KfRaiseIrql(long ptr)
@ stub KiBugCheckData
@ stub KiCoprocessorError
@ stub KiDeliverApc
...
...
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