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
e1f45229
Commit
e1f45229
authored
Jan 25, 2023
by
Mohamad Al-Jaf
Committed by
Alexandre Julliard
Feb 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Partially implement QueryUnbiasedInterruptTimePrecise.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=54338
parent
99fc289b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-1
sync.c
dlls/kernelbase/sync.c
+12
-0
No files found.
dlls/kernelbase/kernelbase.spec
View file @
e1f45229
...
...
@@ -1250,7 +1250,7 @@
@ stdcall QueryThreadCycleTime(long ptr)
@ stdcall QueryThreadpoolStackInformation(ptr ptr)
@ stdcall QueryUnbiasedInterruptTime(ptr) ntdll.RtlQueryUnbiasedInterruptTime
# @ stub QueryUnbiasedInterruptTimePrecise
@ stdcall QueryUnbiasedInterruptTimePrecise(ptr)
@ stdcall QueryVirtualMemoryInformation(long ptr long ptr long ptr)
@ stdcall QueryWorkingSet(long ptr long)
@ stdcall QueryWorkingSetEx(long ptr long)
...
...
dlls/kernelbase/sync.c
View file @
e1f45229
...
...
@@ -235,6 +235,18 @@ void WINAPI DECLSPEC_HOTPATCH QueryInterruptTimePrecise( ULONGLONG *time )
/***********************************************************************
* QueryUnbiasedInterruptTimePrecise (kernelbase.@)
*/
void
WINAPI
DECLSPEC_HOTPATCH
QueryUnbiasedInterruptTimePrecise
(
ULONGLONG
*
time
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
"(%p): semi-stub.
\n
"
,
time
);
RtlQueryUnbiasedInterruptTime
(
time
);
}
/***********************************************************************
* Waits
***********************************************************************/
...
...
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