Added patch to return correct values in GetThreadTimes function for all threads.

This commit is contained in:
Sebastian Lackner
2014-11-07 03:34:58 +01:00
parent 393eed4e68
commit c213417376
5 changed files with 224 additions and 1 deletions

View File

@@ -61,6 +61,7 @@ PATCHLIST := \
ntdll-NtQuerySection.ok \
ntdll-NtSetLdtEntries.ok \
ntdll-Pipe_SpecialCharacters.ok \
ntdll-ThreadTime.ok \
ntdll-WRITECOPY.ok \
ntoskrnl-Irp_Status.ok \
ntoskrnl-KeSetSystemAffinityThread.ok \
@@ -978,6 +979,24 @@ ntdll-Pipe_SpecialCharacters.ok:
echo '+ { "ntdll-Pipe_SpecialCharacters", "Michael Müller", "Allow special characters in pipe names." },'; \
) > ntdll-Pipe_SpecialCharacters.ok
# Patchset ntdll-ThreadTime
# |
# | Included patches:
# | * Return correct values in GetThreadTimes() for all threads. [by Sebastian Lackner]
# |
# | This patchset fixes the following Wine bugs:
# | * [#20230] Return correct values for GetThreadTimes function
# |
# | Modified files:
# | * dlls/ntdll/thread.c, server/protocol.def, server/thread.c
# |
.INTERMEDIATE: ntdll-ThreadTime.ok
ntdll-ThreadTime.ok:
$(call APPLY_FILE,ntdll-ThreadTime/0001-ntdll-Return-correct-values-in-GetThreadTimes-for-al.patch)
@( \
echo '+ { "ntdll-ThreadTime", "Sebastian Lackner", "Return correct values in GetThreadTimes() for all threads." },'; \
) > ntdll-ThreadTime.ok
# Patchset ntdll-WRITECOPY
# |
# | Included patches: