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
1a2aa0b0
Commit
1a2aa0b0
authored
Jul 03, 2022
by
Alexander Wilms
Committed by
Alexandre Julliard
Jul 05, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl: Add KeQueryPriorityThread stub.
Signed-off-by:
Alexander Wilms
<
f.alexander.wilms@gmail.com
>
parent
9c551448
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
ntoskrnl.c
dlls/ntoskrnl.exe/ntoskrnl.c
+9
-0
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
No files found.
dlls/ntoskrnl.exe/ntoskrnl.c
View file @
1a2aa0b0
...
...
@@ -2607,6 +2607,15 @@ ULONGLONG WINAPI KeQueryInterruptTime( void )
return
totaltime
.
QuadPart
;
}
/***********************************************************************
* KeQueryPriorityThread (NTOSKRNL.EXE.@)
*/
KPRIORITY
WINAPI
KeQueryPriorityThread
(
PKTHREAD
Thread
)
{
FIXME
(
"(%p): stub.
\n
"
,
Thread
);
/* priority must be a value between 0 and 31 */
return
15
;
}
/***********************************************************************
* KeQuerySystemTime (NTOSKRNL.EXE.@)
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
1a2aa0b0
...
...
@@ -597,7 +597,7 @@
@ stdcall KeQueryActiveProcessors()
@ stdcall KeQueryActiveProcessorCountEx(long)
@ stdcall KeQueryInterruptTime()
@ st
ub KeQueryPriorityThread
@ st
dcall KeQueryPriorityThread(ptr)
@ stub KeQueryRuntimeThread
@ stdcall KeQuerySystemTime(ptr)
@ stdcall KeQueryTickCount(ptr)
...
...
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