ReactOS 0.4.16-dev-942-g91fadeb
thread.c File Reference
#include <errno.h>
#include <stdarg.h>
#include <process.h>
#include <windef.h>
#include <winbase.h>
#include "wine/test.h"
#include "threaddll.h"
Include dependency graph for thread.c:

Go to the source code of this file.

Typedefs

typedef void(__cdecl_beginthread_start_routine_t) (void *)
 
typedef unsigned int(__stdcall_beginthreadex_start_routine_t) (void *)
 

Enumerations

enum  beginthread_method { use_beginthread , use_beginthreadex }
 

Functions

static charget_thread_dll_path (void)
 
static void set_thead_dll_detach_event (HANDLE dll, HANDLE event)
 
static void test_thread_library_reference (char *thread_dll, enum beginthread_method beginthread_method, enum thread_exit_method exit_method)
 
void CDECL test_invalid_parameter_handler (const wchar_t *expression, const wchar_t *function_name, const wchar_t *file_name, unsigned line_number, uintptr_t reserved)
 
static void test_thread_invalid_params (void)
 
 START_TEST (thread)
 

Variables

static BOOL handler_called
 

Typedef Documentation

◆ _beginthread_start_routine_t

typedef void(__cdecl * _beginthread_start_routine_t) (void *)

Definition at line 29 of file thread.c.

◆ _beginthreadex_start_routine_t

typedef unsigned int(__stdcall * _beginthreadex_start_routine_t) (void *)

Definition at line 30 of file thread.c.

Enumeration Type Documentation

◆ beginthread_method

Enumerator
use_beginthread 
use_beginthreadex 

Definition at line 32 of file thread.c.

33{
36};
@ use_beginthreadex
Definition: thread.c:35
@ use_beginthread
Definition: thread.c:34

Function Documentation

◆ get_thread_dll_path()

static char * get_thread_dll_path ( void  )
static

Definition at line 38 of file thread.c.

39{
40 static char path[MAX_PATH];
41 const char dll_name[] = "threaddll.dll";
42 DWORD written;
44 HRSRC res;
45 void *ptr;
46
48 strcat(path, dll_name);
49
51 ok(file != INVALID_HANDLE_VALUE, "Failed to create file %s: %lu.\n",
53
54 res = FindResourceA(NULL, dll_name, "TESTDLL");
55 ok(!!res, "Failed to load resource: %lu\n", GetLastError());
58 ok(written == SizeofResource(GetModuleHandleA(NULL), res), "Failed to write resource\n");
60
61 return path;
62}
#define ok(value,...)
Definition: atltest.h:57
#define ARRAY_SIZE(A)
Definition: main.h:20
#define NULL
Definition: types.h:112
#define CloseHandle
Definition: compat.h:739
#define INVALID_HANDLE_VALUE
Definition: compat.h:731
#define CreateFileA(a, b, c, d, e, f, g)
Definition: compat.h:740
#define GENERIC_READ
Definition: compat.h:135
#define MAX_PATH
Definition: compat.h:34
BOOL WINAPI WriteFile(IN HANDLE hFile, IN LPCVOID lpBuffer, IN DWORD nNumberOfBytesToWrite OPTIONAL, OUT LPDWORD lpNumberOfBytesWritten, IN LPOVERLAPPED lpOverlapped OPTIONAL)
Definition: rw.c:24
HMODULE WINAPI DECLSPEC_HOTPATCH GetModuleHandleA(LPCSTR lpModuleName)
Definition: loader.c:812
DWORD WINAPI GetTempPathA(IN DWORD nBufferLength, OUT LPSTR lpBuffer)
Definition: path.c:2054
HRSRC WINAPI FindResourceA(HMODULE hModule, LPCSTR name, LPCSTR type)
Definition: res.c:155
DWORD WINAPI SizeofResource(HINSTANCE hModule, HRSRC hRsrc)
Definition: res.c:568
LPVOID WINAPI LockResource(HGLOBAL handle)
Definition: res.c:550
HGLOBAL WINAPI LoadResource(HINSTANCE hModule, HRSRC hRsrc)
Definition: res.c:532
unsigned long DWORD
Definition: ntddk_ex.h:95
GLuint res
Definition: glext.h:9613
#define debugstr_a
Definition: kernel32.h:31
#define CREATE_ALWAYS
Definition: disk.h:72
static PVOID ptr
Definition: dispmode.c:27
#define GENERIC_WRITE
Definition: nt_native.h:90
strcat
Definition: string.h:92
Definition: fci.c:127
DWORD WINAPI GetLastError(void)
Definition: except.c:1042

Referenced by START_TEST().

◆ set_thead_dll_detach_event()

static void set_thead_dll_detach_event ( HANDLE  dll,
HANDLE  event 
)
static

Definition at line 64 of file thread.c.

65{
66 void (WINAPI *_set_detach_event)(HANDLE event);
67 _set_detach_event = (void*) GetProcAddress(dll, "set_detach_event");
68 ok(_set_detach_event != NULL, "Failed to get set_detach_event: %lu\n", GetLastError());
69 _set_detach_event(event);
70}
#define GetProcAddress(x, y)
Definition: compat.h:753
struct _cl_event * event
Definition: glext.h:7739
static HMODULE dll
Definition: str.c:188
#define WINAPI
Definition: msvc.h:6

Referenced by test_thread_library_reference().

◆ START_TEST()

START_TEST ( thread  )

Definition at line 173 of file thread.c.

174{
175 BOOL ret;
176 char *thread_dll = get_thread_dll_path();
177
182
183 ret = DeleteFileA(thread_dll);
184 ok(ret, "Failed to remove the test dll, err: %lu\n", GetLastError());
185
187}
BOOL WINAPI DeleteFileA(IN LPCSTR lpFileName)
Definition: delete.c:24
unsigned int BOOL
Definition: ntddk_ex.h:94
static void test_thread_library_reference(char *thread_dll, enum beginthread_method beginthread_method, enum thread_exit_method exit_method)
Definition: thread.c:72
static char * get_thread_dll_path(void)
Definition: thread.c:38
static void test_thread_invalid_params(void)
Definition: thread.c:151
@ thread_exit_endthreadex
Definition: threaddll.h:22
@ thread_exit_return
Definition: threaddll.h:20
@ thread_exit_endthread
Definition: threaddll.h:21
int ret

◆ test_invalid_parameter_handler()

void CDECL test_invalid_parameter_handler ( const wchar_t expression,
const wchar_t function_name,
const wchar_t file_name,
unsigned  line_number,
uintptr_t  reserved 
)

Definition at line 142 of file thread.c.

147{
149}
#define TRUE
Definition: types.h:120
static BOOL handler_called
Definition: thread.c:140

◆ test_thread_invalid_params()

static void test_thread_invalid_params ( void  )
static

Definition at line 151 of file thread.c.

152{
155
156 errno = 0;
159 ok(hThread == 0, "_beginthreadex unexpected ret: %Iu\n", hThread);
160 ok(errno == EINVAL, "_beginthreadex unexpected errno: %d\n", errno);
161 ok(handler_called, "Expected invalid_parameter_handler to be called\n");
162
163 errno = 0;
166 ok(hThread == -1, "_beginthread unexpected ret: %Iu\n", hThread);
167 ok(errno == EINVAL, "_beginthread unexpected errno: %d\n", errno);
168 ok(handler_called, "Expected invalid_parameter_handler to be called\n");
169
171}
#define EINVAL
Definition: acclib.h:90
#define FALSE
Definition: types.h:117
_invalid_parameter_handler __cdecl _set_invalid_parameter_handler(_In_opt_ _invalid_parameter_handler _Handler)
void(__cdecl * _invalid_parameter_handler)(const wchar_t *, const wchar_t *, const wchar_t *, unsigned int, uintptr_t)
Definition: stdlib.h:125
unsigned int uintptr_t
Definition: intrin.h:47
static void test_invalid_parameter_handler(void)
Definition: misc.c:384
HANDLE hThread
Definition: wizard.c:28
#define errno
Definition: errno.h:18
_CRTIMP uintptr_t __cdecl _beginthreadex(_In_opt_ void *_Security, _In_ unsigned _StackSize, _In_ unsigned(__stdcall *_StartAddress)(void *), _In_opt_ void *_ArgList, _In_ unsigned _InitFlag, _Out_opt_ unsigned *_ThrdAddr)
_CRTIMP uintptr_t __cdecl _beginthread(_In_ void(__cdecl *_StartAddress)(void *), _In_ unsigned _StackSize, _In_opt_ void *_ArgList)

Referenced by START_TEST().

◆ test_thread_library_reference()

static void test_thread_library_reference ( char thread_dll,
enum beginthread_method  beginthread_method,
enum thread_exit_method  exit_method 
)
static

Definition at line 72 of file thread.c.

75{
78 DWORD ret;
79 uintptr_t thread_handle;
80 struct threaddll_args args;
81
82 args.exit_method = exit_method;
83
85 ok(detach_event != NULL, "Failed to create an event: %lu\n", GetLastError());
86 args.confirm_running = CreateEventA(NULL, FALSE, FALSE, NULL);
87 ok(args.confirm_running != NULL, "Failed to create an event: %lu\n", GetLastError());
88 args.past_free = CreateEventA(NULL, FALSE, FALSE, NULL);
89 ok(args.past_free != NULL, "Failed to create an event: %lu\n", GetLastError());
90
91 dll = LoadLibraryA(thread_dll);
92 ok(dll != NULL, "Failed to load the test dll: %lu\n", GetLastError());
93
95
97 {
98 _beginthreadex_start_routine_t proc = (void*) GetProcAddress(dll, "stdcall_thread_proc");
99 ok(proc != NULL, "Failed to get stdcall_thread_proc: %lu\n", GetLastError());
100 thread_handle = _beginthreadex(NULL, 0, proc, &args, 0, NULL);
101 }
102 else
103 {
104 _beginthread_start_routine_t proc = (void*) GetProcAddress(dll, "cdecl_thread_proc");
105 ok(proc != NULL, "Failed to get stdcall_thread_proc: %lu\n", GetLastError());
106 thread_handle = _beginthread(proc, 0, &args);
107 }
108
109 ok(thread_handle != -1 && thread_handle != 0, "Failed to begin thread: %u\n", errno);
110
112 ok(ret, "Failed to free the library: %lu\n", GetLastError());
113
114 ret = WaitForSingleObject(args.confirm_running, 200);
115 ok(ret == WAIT_OBJECT_0, "Event was not signaled, ret: %lu, err: %lu\n", ret, GetLastError());
116
118 ok(ret == WAIT_TIMEOUT, "Thread detach happened unexpectedly signaling an event, ret: %ld, err: %lu\n", ret, GetLastError());
119
120 ret = SetEvent(args.past_free);
121 ok(ret, "Failed to signal event: %ld\n", GetLastError());
122
124 {
125 ret = WaitForSingleObject((HANDLE)thread_handle, 200);
126 ok(ret == WAIT_OBJECT_0, "Thread has not exited, ret: %ld, err: %lu\n", ret, GetLastError());
127 }
128
130 ok(ret == WAIT_OBJECT_0, "Detach event was not signaled, ret: %ld, err: %lu\n", ret, GetLastError());
131
133 CloseHandle((HANDLE)thread_handle);
134
135 CloseHandle(args.past_free);
136 CloseHandle(args.confirm_running);
138}
#define WAIT_TIMEOUT
Definition: dderror.h:14
#define FreeLibrary(x)
Definition: compat.h:748
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR lpLibFileName)
Definition: loader.c:111
static void set_thead_dll_detach_event(HANDLE dll, HANDLE event)
Definition: thread.c:64
unsigned int(__stdcall * _beginthreadex_start_routine_t)(void *)
Definition: thread.c:30
beginthread_method
Definition: thread.c:33
void(__cdecl * _beginthread_start_routine_t)(void *)
Definition: thread.c:29
static HANDLE proc()
Definition: pdb.c:34
Definition: match.c:390
enum thread_exit_method exit_method
Definition: threaddll.h:29
DWORD WINAPI WaitForSingleObject(IN HANDLE hHandle, IN DWORD dwMilliseconds)
Definition: synch.c:82
HANDLE WINAPI DECLSPEC_HOTPATCH CreateEventA(IN LPSECURITY_ATTRIBUTES lpEventAttributes OPTIONAL, IN BOOL bManualReset, IN BOOL bInitialState, IN LPCSTR lpName OPTIONAL)
Definition: synch.c:637
BOOL WINAPI DECLSPEC_HOTPATCH SetEvent(IN HANDLE hEvent)
Definition: synch.c:733
static HANDLE detach_event
Definition: threaddll.c:27
#define WAIT_OBJECT_0
Definition: winbase.h:432

Referenced by START_TEST().

Variable Documentation

◆ handler_called

BOOL handler_called
static

Definition at line 140 of file thread.c.

Referenced by test_invalid_parameter_handler(), and test_thread_invalid_params().