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
88362a07
Commit
88362a07
authored
Mar 30, 2015
by
Austin English
Committed by
Alexandre Julliard
Mar 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add a stub for QueryThreadCycleTime.
parent
9ec6fd85
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
time.c
dlls/kernel32/time.c
+12
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
88362a07
...
...
@@ -1167,7 +1167,7 @@
@ stdcall QueryPerformanceFrequency(ptr)
# @ stub QueryProcessAffinityUpdateMode
# @ stub QueryProcessCycleTime
# @ stub QueryThreadCycleTime
@ stdcall QueryThreadCycleTime(long ptr)
# @ stub QueryThreadProfiling
# @ stub QueryThreadpoolStackInformation
# @ stub -arch=x86_64 QueryUmsThreadInformation
...
...
dlls/kernel32/time.c
View file @
88362a07
...
...
@@ -1105,6 +1105,18 @@ DWORD WINAPI GetDynamicTimeZoneInformation(PDYNAMIC_TIME_ZONE_INFORMATION info)
}
/***********************************************************************
* QueryThreadCycleTime (KERNEL32.@)
*/
BOOL
WINAPI
QueryThreadCycleTime
(
HANDLE
thread
,
PULONG64
cycle
)
{
static
int
once
;
if
(
!
once
++
)
FIXME
(
"(%p,%p,): stub!
\n
"
,
thread
,
cycle
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* QueryUnbiasedInterruptTime (KERNEL32.@)
*/
BOOL
WINAPI
QueryUnbiasedInterruptTime
(
ULONGLONG
*
time
)
...
...
include/winbase.h
View file @
88362a07
...
...
@@ -2294,6 +2294,7 @@ WINBASEAPI BOOL WINAPI QueryInformationJobObject(HANDLE,JOBOBJECTINFOCLAS
WINBASEAPI
BOOL
WINAPI
QueryMemoryResourceNotification
(
HANDLE
,
PBOOL
);
WINBASEAPI
BOOL
WINAPI
QueryPerformanceCounter
(
LARGE_INTEGER
*
);
WINBASEAPI
BOOL
WINAPI
QueryPerformanceFrequency
(
LARGE_INTEGER
*
);
WINBASEAPI
BOOL
WINAPI
QueryThreadCycleTime
(
HANDLE
,
PULONG64
);
WINBASEAPI
DWORD
WINAPI
QueueUserAPC
(
PAPCFUNC
,
HANDLE
,
ULONG_PTR
);
WINBASEAPI
BOOL
WINAPI
QueueUserWorkItem
(
LPTHREAD_START_ROUTINE
,
PVOID
,
ULONG
);
WINBASEAPI
void
WINAPI
RaiseException
(
DWORD
,
DWORD
,
DWORD
,
const
ULONG_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