Rebase against 28ec2795186c7db83637b3b17e4fa95095ebb77d.

This commit is contained in:
Zebediah Figura
2020-04-27 16:19:14 -05:00
parent 2ad422ff4d
commit 69a4e4baa2
20 changed files with 119 additions and 1678 deletions

View File

@@ -1,4 +1,4 @@
From 72ace2e57404a068679a703268c505c5f5ac3b12 Mon Sep 17 00:00:00 2001
From 43e419ddc34cac7cf7754aed353fcbfb0bd9619e Mon Sep 17 00:00:00 2001
From: Dmitry Timoshkov <dmitry@baikal.ru>
Date: Thu, 28 Apr 2016 18:14:36 +0800
Subject: [PATCH] ntdll: Implement NtSetLdtEntries.
@@ -8,7 +8,7 @@ Subject: [PATCH] ntdll: Implement NtSetLdtEntries.
1 file changed, 79 insertions(+)
diff --git a/dlls/kernel32/tests/thread.c b/dlls/kernel32/tests/thread.c
index b6a65a4207c..70b22367e18 100644
index e068797ff57..8c5148d4a92 100644
--- a/dlls/kernel32/tests/thread.c
+++ b/dlls/kernel32/tests/thread.c
@@ -99,6 +99,7 @@ static BOOL (WINAPI *pSetThreadGroupAffinity)(HANDLE,const GROUP_AFFINITY*,GROUP
@@ -19,7 +19,7 @@ index b6a65a4207c..70b22367e18 100644
static HANDLE create_target_process(const char *arg)
{
@@ -1262,6 +1263,82 @@ static void test_GetThreadSelectorEntry(void)
@@ -1276,6 +1277,82 @@ static void test_GetThreadSelectorEntry(void)
ok(entry.HighWord.Bits.Granularity == 1, "expected 1, got %u\n", entry.HighWord.Bits.Granularity);
}
@@ -102,7 +102,7 @@ index b6a65a4207c..70b22367e18 100644
#endif /* __i386__ */
static HANDLE finish_event;
@@ -2324,6 +2401,7 @@ static void init_funcs(void)
@@ -2338,6 +2415,7 @@ static void init_funcs(void)
X(NtQueryInformationThread);
X(RtlGetThreadErrorMode);
X(NtSetInformationThread);
@@ -110,14 +110,14 @@ index b6a65a4207c..70b22367e18 100644
}
#undef X
}
@@ -2379,6 +2457,7 @@ START_TEST(thread)
#ifdef __i386__
@@ -2394,6 +2472,7 @@ START_TEST(thread)
test_SetThreadContext();
test_GetThreadSelectorEntry();
test_GetThreadContext();
+ test_NtSetLdtEntries();
#endif
test_QueueUserWorkItem();
test_RegisterWaitForSingleObject();
--
2.26.0
2.26.2