4 * Copyright 1996 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
27 #include <sys/types.h>
33 #define WIN32_NO_STATUS
38 #include "wine/exception.h"
39 #include "wine/library.h"
40 #include "wine/server.h"
41 #include "wine/debug.h"
43 #include "kernel_private.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(thread
);
48 /***********************************************************************
49 * CreateThread (KERNEL32.@)
51 HANDLE WINAPI DECLSPEC_HOTPATCH
CreateThread( SECURITY_ATTRIBUTES
*sa
, SIZE_T stack
, LPTHREAD_START_ROUTINE start
,
52 LPVOID param
, DWORD flags
, LPDWORD id
)
54 return CreateRemoteThread( GetCurrentProcess(),
55 sa
, stack
, start
, param
, flags
, id
);
58 /***************************************************************************
59 * CreateRemoteThread (KERNEL32.@)
61 HANDLE WINAPI
CreateRemoteThread( HANDLE hProcess
, SECURITY_ATTRIBUTES
*sa
, SIZE_T stack
,
62 LPTHREAD_START_ROUTINE start
, LPVOID param
,
63 DWORD flags
, DWORD
*id
)
65 return CreateRemoteThreadEx( hProcess
, sa
, stack
, start
, param
, flags
, NULL
, id
);
68 /***************************************************************************
69 * CreateRemoteThreadEx (KERNEL32.@)
71 * Creates a thread that runs in the address space of another process
76 * Success: Handle to the new thread.
77 * Failure: NULL. Use GetLastError() to find the error cause.
80 * Improper memory allocation: there's no ability to free new_thread_info
82 * Bad start address for RtlCreateUserThread because the library
83 * may be loaded at different address in other process.
85 HANDLE WINAPI
CreateRemoteThreadEx( HANDLE hProcess
, SECURITY_ATTRIBUTES
*sa
, SIZE_T stack
,
86 LPTHREAD_START_ROUTINE start
, LPVOID param
, DWORD flags
,
87 LPPROC_THREAD_ATTRIBUTE_LIST attributes
, DWORD
*id
)
92 SIZE_T stack_reserve
= 0, stack_commit
= 0;
95 FIXME("thread attributes ignored\n");
97 if (flags
& STACK_SIZE_PARAM_IS_A_RESERVATION
) stack_reserve
= stack
;
98 else stack_commit
= stack
;
100 status
= RtlCreateUserThread( hProcess
, NULL
, TRUE
,
101 NULL
, stack_reserve
, stack_commit
,
102 (PRTL_THREAD_START_ROUTINE
)start
, param
, &handle
, &client_id
);
103 if (status
== STATUS_SUCCESS
)
105 if (id
) *id
= HandleToULong(client_id
.UniqueThread
);
106 if (sa
&& (sa
->nLength
>= sizeof(*sa
)) && sa
->bInheritHandle
)
107 SetHandleInformation( handle
, HANDLE_FLAG_INHERIT
, HANDLE_FLAG_INHERIT
);
108 if (!(flags
& CREATE_SUSPENDED
))
111 if (NtResumeThread( handle
, &ret
))
114 SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
121 SetLastError( RtlNtStatusToDosError(status
) );
128 /***********************************************************************
129 * OpenThread [KERNEL32.@] Retrieves a handle to a thread from its thread id
131 HANDLE WINAPI
OpenThread( DWORD dwDesiredAccess
, BOOL bInheritHandle
, DWORD dwThreadId
)
135 OBJECT_ATTRIBUTES attr
;
138 attr
.Length
= sizeof(attr
);
139 attr
.RootDirectory
= 0;
140 attr
.Attributes
= bInheritHandle
? OBJ_INHERIT
: 0;
141 attr
.ObjectName
= NULL
;
142 attr
.SecurityDescriptor
= NULL
;
143 attr
.SecurityQualityOfService
= NULL
;
145 cid
.UniqueProcess
= 0; /* FIXME */
146 cid
.UniqueThread
= ULongToHandle(dwThreadId
);
147 status
= NtOpenThread( &handle
, dwDesiredAccess
, &attr
, &cid
);
150 SetLastError( RtlNtStatusToDosError(status
) );
157 /***********************************************************************
158 * ExitThread [KERNEL32.@] Ends a thread
163 void WINAPI
ExitThread( DWORD code
) /* [in] Exit code for this thread */
165 RtlExitUserThread( code
);
169 /**********************************************************************
170 * TerminateThread [KERNEL32.@] Terminates a thread
176 BOOL WINAPI
TerminateThread( HANDLE handle
, /* [in] Handle to thread */
177 DWORD exit_code
) /* [in] Exit code for thread */
179 NTSTATUS status
= NtTerminateThread( handle
, exit_code
);
180 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
185 /***********************************************************************
186 * FreeLibraryAndExitThread (KERNEL32.@)
188 void WINAPI
FreeLibraryAndExitThread(HINSTANCE hLibModule
, DWORD dwExitCode
)
190 FreeLibrary(hLibModule
);
191 ExitThread(dwExitCode
);
195 /**********************************************************************
196 * GetExitCodeThread (KERNEL32.@)
198 * Gets termination status of thread.
204 BOOL WINAPI
GetExitCodeThread(
205 HANDLE hthread
, /* [in] Handle to thread */
206 LPDWORD exitcode
) /* [out] Address to receive termination status */
208 THREAD_BASIC_INFORMATION info
;
209 NTSTATUS status
= NtQueryInformationThread( hthread
, ThreadBasicInformation
,
210 &info
, sizeof(info
), NULL
);
214 SetLastError( RtlNtStatusToDosError(status
) );
217 if (exitcode
) *exitcode
= info
.ExitStatus
;
222 /***********************************************************************
223 * SetThreadContext [KERNEL32.@] Sets context of thread.
229 BOOL WINAPI
SetThreadContext( HANDLE handle
, /* [in] Handle to thread with context */
230 const CONTEXT
*context
) /* [in] Address of context structure */
232 NTSTATUS status
= NtSetContextThread( handle
, context
);
233 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
238 /***********************************************************************
239 * GetThreadContext [KERNEL32.@] Retrieves context of thread.
245 BOOL WINAPI
GetThreadContext( HANDLE handle
, /* [in] Handle to thread with context */
246 CONTEXT
*context
) /* [out] Address of context structure */
248 NTSTATUS status
= NtGetContextThread( handle
, context
);
249 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
254 /**********************************************************************
255 * SuspendThread [KERNEL32.@] Suspends a thread.
258 * Success: Previous suspend count
259 * Failure: 0xFFFFFFFF
261 DWORD WINAPI
SuspendThread( HANDLE hthread
) /* [in] Handle to the thread */
264 NTSTATUS status
= NtSuspendThread( hthread
, &ret
);
269 SetLastError( RtlNtStatusToDosError(status
) );
275 /**********************************************************************
276 * ResumeThread [KERNEL32.@] Resumes a thread.
278 * Decrements a thread's suspend count. When count is zero, the
279 * execution of the thread is resumed.
282 * Success: Previous suspend count
283 * Failure: 0xFFFFFFFF
286 DWORD WINAPI
ResumeThread( HANDLE hthread
) /* [in] Identifies thread to restart */
289 NTSTATUS status
= NtResumeThread( hthread
, &ret
);
294 SetLastError( RtlNtStatusToDosError(status
) );
300 /**********************************************************************
301 * GetThreadPriority [KERNEL32.@] Returns priority for thread.
304 * Success: Thread's priority level.
305 * Failure: THREAD_PRIORITY_ERROR_RETURN
307 INT WINAPI
GetThreadPriority(
308 HANDLE hthread
) /* [in] Handle to thread */
310 THREAD_BASIC_INFORMATION info
;
311 NTSTATUS status
= NtQueryInformationThread( hthread
, ThreadBasicInformation
,
312 &info
, sizeof(info
), NULL
);
316 SetLastError( RtlNtStatusToDosError(status
) );
317 return THREAD_PRIORITY_ERROR_RETURN
;
319 return info
.Priority
;
323 /**********************************************************************
324 * SetThreadPriority [KERNEL32.@] Sets priority for thread.
330 BOOL WINAPI
SetThreadPriority(
331 HANDLE hthread
, /* [in] Handle to thread */
332 INT priority
) /* [in] Thread priority level */
334 DWORD prio
= priority
;
337 status
= NtSetInformationThread(hthread
, ThreadBasePriority
,
338 &prio
, sizeof(prio
));
342 SetLastError( RtlNtStatusToDosError(status
) );
350 /**********************************************************************
351 * GetThreadPriorityBoost [KERNEL32.@] Returns priority boost for thread.
353 * Always reports that priority boost is disabled.
359 BOOL WINAPI
GetThreadPriorityBoost(
360 HANDLE hthread
, /* [in] Handle to thread */
361 PBOOL pstate
) /* [out] pointer to var that receives the boost state */
363 if (pstate
) *pstate
= FALSE
;
368 /**********************************************************************
369 * SetThreadPriorityBoost [KERNEL32.@] Sets priority boost for thread.
371 * Priority boost is not implemented, but we return TRUE
372 * anyway because some games crash otherwise.
374 BOOL WINAPI
SetThreadPriorityBoost(
375 HANDLE hthread
, /* [in] Handle to thread */
376 BOOL disable
) /* [in] TRUE to disable priority boost */
382 /**********************************************************************
383 * SetThreadStackGuarantee (KERNEL32.@)
385 BOOL WINAPI
SetThreadStackGuarantee(PULONG stacksize
)
389 FIXME("(%p): stub\n", stacksize
);
393 /***********************************************************************
394 * GetThreadGroupAffinity (KERNEL32.@)
396 BOOL WINAPI
GetThreadGroupAffinity( HANDLE thread
, GROUP_AFFINITY
*affinity
)
402 SetLastError( ERROR_INVALID_PARAMETER
);
406 status
= NtQueryInformationThread( thread
, ThreadGroupInformation
,
407 affinity
, sizeof(*affinity
), NULL
);
410 SetLastError( RtlNtStatusToDosError(status
) );
417 /***********************************************************************
418 * SetThreadGroupAffinity (KERNEL32.@)
420 BOOL WINAPI
SetThreadGroupAffinity( HANDLE thread
, const GROUP_AFFINITY
*affinity_new
,
421 GROUP_AFFINITY
*affinity_old
)
425 if (affinity_old
&& !GetThreadGroupAffinity( thread
, affinity_old
))
428 status
= NtSetInformationThread( thread
, ThreadGroupInformation
,
429 affinity_new
, sizeof(*affinity_new
) );
432 SetLastError( RtlNtStatusToDosError(status
) );
439 /**********************************************************************
440 * SetThreadAffinityMask (KERNEL32.@)
442 DWORD_PTR WINAPI
SetThreadAffinityMask( HANDLE hThread
, DWORD_PTR dwThreadAffinityMask
)
445 THREAD_BASIC_INFORMATION tbi
;
447 status
= NtQueryInformationThread( hThread
, ThreadBasicInformation
,
448 &tbi
, sizeof(tbi
), NULL
);
451 SetLastError( RtlNtStatusToDosError(status
) );
454 status
= NtSetInformationThread( hThread
, ThreadAffinityMask
,
455 &dwThreadAffinityMask
,
456 sizeof(dwThreadAffinityMask
));
459 SetLastError( RtlNtStatusToDosError(status
) );
462 return tbi
.AffinityMask
;
466 /**********************************************************************
467 * SetThreadIdealProcessor [KERNEL32.@] Sets preferred processor for thread.
470 * Success: Value of last call to SetThreadIdealProcessor
473 DWORD WINAPI
SetThreadIdealProcessor(
474 HANDLE hThread
, /* [in] Specifies the thread of interest */
475 DWORD dwIdealProcessor
) /* [in] Specifies the new preferred processor */
477 FIXME("(%p): stub\n",hThread
);
478 if (dwIdealProcessor
> MAXIMUM_PROCESSORS
)
480 SetLastError(ERROR_INVALID_PARAMETER
);
486 /***********************************************************************
487 * SetThreadIdealProcessorEx (KERNEL32.@)
489 BOOL WINAPI
SetThreadIdealProcessorEx( HANDLE thread
, PROCESSOR_NUMBER
*ideal
, PROCESSOR_NUMBER
*previous
)
491 FIXME("(%p %p %p): stub\n", thread
, ideal
, previous
);
492 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
496 /***********************************************************************
497 * GetThreadSelectorEntry (KERNEL32.@)
499 BOOL WINAPI
GetThreadSelectorEntry( HANDLE hthread
, DWORD sel
, LPLDT_ENTRY ldtent
)
501 THREAD_DESCRIPTOR_INFORMATION tdi
;
505 status
= NtQueryInformationThread( hthread
, ThreadDescriptorTableEntry
, &tdi
, sizeof(tdi
), NULL
);
508 SetLastError( RtlNtStatusToDosError(status
) );
516 /* callback for QueueUserAPC */
517 static void CALLBACK
call_user_apc( ULONG_PTR arg1
, ULONG_PTR arg2
, ULONG_PTR arg3
)
519 PAPCFUNC func
= (PAPCFUNC
)arg1
;
523 /***********************************************************************
524 * QueueUserAPC (KERNEL32.@)
526 DWORD WINAPI
QueueUserAPC( PAPCFUNC func
, HANDLE hthread
, ULONG_PTR data
)
528 NTSTATUS status
= NtQueueApcThread( hthread
, call_user_apc
, (ULONG_PTR
)func
, data
, 0 );
530 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
534 /***********************************************************************
535 * QueueUserWorkItem (KERNEL32.@)
537 BOOL WINAPI
QueueUserWorkItem( LPTHREAD_START_ROUTINE Function
, PVOID Context
, ULONG Flags
)
541 TRACE("(%p,%p,0x%08x)\n", Function
, Context
, Flags
);
543 status
= RtlQueueWorkItem( Function
, Context
, Flags
);
545 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
549 /**********************************************************************
550 * GetThreadTimes [KERNEL32.@] Obtains timing information.
556 BOOL WINAPI
GetThreadTimes(
557 HANDLE thread
, /* [in] Specifies the thread of interest */
558 LPFILETIME creationtime
, /* [out] When the thread was created */
559 LPFILETIME exittime
, /* [out] When the thread was destroyed */
560 LPFILETIME kerneltime
, /* [out] Time thread spent in kernel mode */
561 LPFILETIME usertime
) /* [out] Time thread spent in user mode */
563 KERNEL_USER_TIMES kusrt
;
566 status
= NtQueryInformationThread(thread
, ThreadTimes
, &kusrt
,
567 sizeof(kusrt
), NULL
);
570 SetLastError( RtlNtStatusToDosError(status
) );
575 creationtime
->dwLowDateTime
= kusrt
.CreateTime
.u
.LowPart
;
576 creationtime
->dwHighDateTime
= kusrt
.CreateTime
.u
.HighPart
;
580 exittime
->dwLowDateTime
= kusrt
.ExitTime
.u
.LowPart
;
581 exittime
->dwHighDateTime
= kusrt
.ExitTime
.u
.HighPart
;
585 kerneltime
->dwLowDateTime
= kusrt
.KernelTime
.u
.LowPart
;
586 kerneltime
->dwHighDateTime
= kusrt
.KernelTime
.u
.HighPart
;
590 usertime
->dwLowDateTime
= kusrt
.UserTime
.u
.LowPart
;
591 usertime
->dwHighDateTime
= kusrt
.UserTime
.u
.HighPart
;
597 /**********************************************************************
598 * GetThreadId [KERNEL32.@]
600 * Retrieve the identifier of a thread.
603 * Thread [I] The thread to retrieve the identifier of.
606 * Success: Identifier of the target thread.
609 DWORD WINAPI
GetThreadId(HANDLE Thread
)
611 THREAD_BASIC_INFORMATION tbi
;
614 TRACE("(%p)\n", Thread
);
616 status
= NtQueryInformationThread(Thread
, ThreadBasicInformation
, &tbi
,
620 SetLastError( RtlNtStatusToDosError(status
) );
624 return HandleToULong(tbi
.ClientId
.UniqueThread
);
627 /**********************************************************************
628 * GetProcessIdOfThread [KERNEL32.@]
630 * Retrieve process identifier given thread belongs to.
633 * Thread [I] The thread identifier.
636 * Success: Process identifier
639 DWORD WINAPI
GetProcessIdOfThread(HANDLE Thread
)
641 THREAD_BASIC_INFORMATION tbi
;
644 TRACE("(%p)\n", Thread
);
646 status
= NtQueryInformationThread(Thread
, ThreadBasicInformation
, &tbi
,
650 SetLastError( RtlNtStatusToDosError(status
) );
654 return HandleToULong(tbi
.ClientId
.UniqueProcess
);
657 /***********************************************************************
658 * GetCurrentThread [KERNEL32.@] Gets pseudohandle for current thread
661 * Pseudohandle for the current thread
663 #undef GetCurrentThread
664 HANDLE WINAPI
GetCurrentThread(void)
666 return (HANDLE
)~(ULONG_PTR
)1;
672 /***********************************************************************
673 * SetLastError (KERNEL32.@)
675 /* void WINAPI SetLastError( DWORD error ); */
676 __ASM_STDCALL_FUNC( SetLastError
, 4,
677 "movl 4(%esp),%eax\n\t"
682 /***********************************************************************
683 * GetLastError (KERNEL32.@)
685 /* DWORD WINAPI GetLastError(void); */
686 __ASM_STDCALL_FUNC( GetLastError
, 0, ".byte 0x64\n\tmovl 0x34,%eax\n\tret" )
688 /***********************************************************************
689 * GetCurrentProcessId (KERNEL32.@)
691 /* DWORD WINAPI GetCurrentProcessId(void) */
692 __ASM_STDCALL_FUNC( GetCurrentProcessId
, 0, ".byte 0x64\n\tmovl 0x20,%eax\n\tret" )
694 /***********************************************************************
695 * GetCurrentThreadId (KERNEL32.@)
697 /* DWORD WINAPI GetCurrentThreadId(void) */
698 __ASM_STDCALL_FUNC( GetCurrentThreadId
, 0, ".byte 0x64\n\tmovl 0x24,%eax\n\tret" )
700 /***********************************************************************
701 * GetProcessHeap (KERNEL32.@)
703 /* HANDLE WINAPI GetProcessHeap(void) */
704 __ASM_STDCALL_FUNC( GetProcessHeap
, 0, ".byte 0x64\n\tmovl 0x30,%eax\n\tmovl 0x18(%eax),%eax\n\tret");
706 #elif defined(__x86_64__)
710 /***********************************************************************
711 * SetLastError (KERNEL32.@)
713 /* void WINAPI SetLastError( DWORD error ); */
714 __ASM_STDCALL_FUNC( SetLastError
, 8, ".byte 0x65\n\tmovq 0x30,%rax\n\tmovl %ecx,0x68(%rax)\n\tret" );
716 /***********************************************************************
717 * GetLastError (KERNEL32.@)
719 /* DWORD WINAPI GetLastError(void); */
720 __ASM_STDCALL_FUNC( GetLastError
, 0, ".byte 0x65\n\tmovq 0x30,%rax\n\tmovl 0x68(%rax),%eax\n\tret" );
722 /***********************************************************************
723 * GetCurrentProcessId (KERNEL32.@)
725 /* DWORD WINAPI GetCurrentProcessId(void) */
726 __ASM_STDCALL_FUNC( GetCurrentProcessId
, 0, ".byte 0x65\n\tmovq 0x30,%rax\n\tmovl 0x40(%rax),%eax\n\tret" );
728 /***********************************************************************
729 * GetCurrentThreadId (KERNEL32.@)
731 /* DWORD WINAPI GetCurrentThreadId(void) */
732 __ASM_STDCALL_FUNC( GetCurrentThreadId
, 0, ".byte 0x65\n\tmovq 0x30,%rax\n\tmovl 0x48(%rax),%eax\n\tret" );
734 /***********************************************************************
735 * GetProcessHeap (KERNEL32.@)
737 /* HANDLE WINAPI GetProcessHeap(void) */
738 __ASM_STDCALL_FUNC( GetProcessHeap
, 0, ".byte 0x65\n\tmovq 0x30,%rax\n\tmovq 0x60(%rax),%rax\n\tmovq 0x30(%rax),%rax\n\tret");
742 /***********************************************************************
743 * SetLastError (KERNEL32.@)
745 /* void WINAPI SetLastError( DWORD error ); */
746 __ASM_STDCALL_FUNC( SetLastError
, 8, ".byte 0x65\n\tmovl %ecx,0x68\n\tret" );
748 /***********************************************************************
749 * GetLastError (KERNEL32.@)
751 /* DWORD WINAPI GetLastError(void); */
752 __ASM_STDCALL_FUNC( GetLastError
, 0, ".byte 0x65\n\tmovl 0x68,%eax\n\tret" );
754 /***********************************************************************
755 * GetCurrentProcessId (KERNEL32.@)
757 /* DWORD WINAPI GetCurrentProcessId(void) */
758 __ASM_STDCALL_FUNC( GetCurrentProcessId
, 0, ".byte 0x65\n\tmovl 0x40,%eax\n\tret" );
760 /***********************************************************************
761 * GetCurrentThreadId (KERNEL32.@)
763 /* DWORD WINAPI GetCurrentThreadId(void) */
764 __ASM_STDCALL_FUNC( GetCurrentThreadId
, 0, ".byte 0x65\n\tmovl 0x48,%eax\n\tret" );
766 /***********************************************************************
767 * GetProcessHeap (KERNEL32.@)
769 /* HANDLE WINAPI GetProcessHeap(void) */
770 __ASM_STDCALL_FUNC( GetProcessHeap
, 0, ".byte 0x65\n\tmovq 0x60,%rax\n\tmovq 0x30(%rax),%rax\n\tret");
772 #endif /* __APPLE__ */
774 #else /* __x86_64__ */
776 /**********************************************************************
777 * SetLastError (KERNEL32.@)
779 * Sets the last-error code.
784 void WINAPI
SetLastError( DWORD error
) /* [in] Per-thread error code */
786 NtCurrentTeb()->LastErrorValue
= error
;
789 /**********************************************************************
790 * GetLastError (KERNEL32.@)
792 * Get the last-error code.
797 DWORD WINAPI
GetLastError(void)
799 return NtCurrentTeb()->LastErrorValue
;
802 /***********************************************************************
803 * GetCurrentProcessId (KERNEL32.@)
805 * Get the current process identifier.
808 * current process identifier
810 DWORD WINAPI
GetCurrentProcessId(void)
812 return HandleToULong(NtCurrentTeb()->ClientId
.UniqueProcess
);
815 /***********************************************************************
816 * GetCurrentThreadId (KERNEL32.@)
818 * Get the current thread identifier.
821 * current thread identifier
823 DWORD WINAPI
GetCurrentThreadId(void)
825 return HandleToULong(NtCurrentTeb()->ClientId
.UniqueThread
);
828 /***********************************************************************
829 * GetProcessHeap (KERNEL32.@)
831 HANDLE WINAPI
GetProcessHeap(void)
833 return NtCurrentTeb()->Peb
->ProcessHeap
;
836 #endif /* __i386__ */
838 /*************************************************************************
839 * rtlmode_to_win32mode
841 static DWORD
rtlmode_to_win32mode( DWORD rtlmode
)
846 win32mode
|= SEM_FAILCRITICALERRORS
;
848 win32mode
|= SEM_NOGPFAULTERRORBOX
;
850 win32mode
|= SEM_NOOPENFILEERRORBOX
;
855 /***********************************************************************
856 * SetThreadErrorMode (KERNEL32.@)
858 * Set the thread local error mode.
861 * mode [I] The new error mode, a bitwise or of SEM_FAILCRITICALERRORS,
862 * SEM_NOGPFAULTERRORBOX and SEM_NOOPENFILEERRORBOX.
863 * oldmode [O] Destination of the old error mode (may be NULL)
867 * Failure: FALSE, check GetLastError
869 BOOL WINAPI
SetThreadErrorMode( DWORD mode
, LPDWORD oldmode
)
874 if (mode
& ~(SEM_FAILCRITICALERRORS
|
875 SEM_NOGPFAULTERRORBOX
|
876 SEM_NOOPENFILEERRORBOX
))
878 SetLastError( ERROR_INVALID_PARAMETER
);
882 if (mode
& SEM_FAILCRITICALERRORS
)
884 if (mode
& SEM_NOGPFAULTERRORBOX
)
886 if (mode
& SEM_NOOPENFILEERRORBOX
)
889 status
= RtlSetThreadErrorMode( tmp
, oldmode
);
892 SetLastError( RtlNtStatusToDosError(status
) );
897 *oldmode
= rtlmode_to_win32mode(*oldmode
);
902 /***********************************************************************
903 * GetThreadErrorMode (KERNEL32.@)
905 * Get the thread local error mode.
911 * The current thread local error mode.
913 DWORD WINAPI
GetThreadErrorMode( void )
915 return rtlmode_to_win32mode( RtlGetThreadErrorMode() );
918 /***********************************************************************
919 * GetThreadUILanguage (KERNEL32.@)
921 * Get the current thread's language identifier.
927 * The current thread's language identifier.
929 LANGID WINAPI
GetThreadUILanguage( void )
932 NtQueryDefaultUILanguage( &lang
);
933 FIXME(": stub, returning default language.\n");
937 /***********************************************************************
938 * GetThreadIOPendingFlag (KERNEL32.@)
940 BOOL WINAPI
GetThreadIOPendingFlag( HANDLE thread
, PBOOL io_pending
)
944 TRACE("%p, %p\n", thread
, io_pending
);
946 status
= NtQueryInformationThread( thread
, ThreadIsIoPending
,
947 io_pending
, sizeof(*io_pending
), NULL
);
950 SetLastError( RtlNtStatusToDosError(status
) );
956 /***********************************************************************
957 * CallbackMayRunLong (KERNEL32.@)
959 BOOL WINAPI
CallbackMayRunLong( TP_CALLBACK_INSTANCE
*instance
)
963 TRACE( "%p\n", instance
);
965 status
= TpCallbackMayRunLong( instance
);
968 SetLastError( RtlNtStatusToDosError(status
) );
975 /***********************************************************************
976 * CreateThreadpool (KERNEL32.@)
978 PTP_POOL WINAPI
CreateThreadpool( PVOID reserved
)
983 TRACE( "%p\n", reserved
);
985 status
= TpAllocPool( &pool
, reserved
);
988 SetLastError( RtlNtStatusToDosError(status
) );
995 /***********************************************************************
996 * CreateThreadpoolCleanupGroup (KERNEL32.@)
998 PTP_CLEANUP_GROUP WINAPI
CreateThreadpoolCleanupGroup( void )
1000 TP_CLEANUP_GROUP
*group
;
1005 status
= TpAllocCleanupGroup( &group
);
1008 SetLastError( RtlNtStatusToDosError(status
) );
1015 /***********************************************************************
1016 * CreateThreadpoolIo (KERNEL32.@)
1018 PTP_IO WINAPI
CreateThreadpoolIo( HANDLE handle
, PTP_WIN32_IO_CALLBACK callback
,
1019 PVOID userdata
, TP_CALLBACK_ENVIRON
*environment
)
1021 FIXME("(%p, %p, %p, %p): stub\n", handle
, callback
, userdata
, environment
);
1025 /***********************************************************************
1026 * CreateThreadpoolTimer (KERNEL32.@)
1028 PTP_TIMER WINAPI
CreateThreadpoolTimer( PTP_TIMER_CALLBACK callback
, PVOID userdata
,
1029 TP_CALLBACK_ENVIRON
*environment
)
1034 TRACE( "%p, %p, %p\n", callback
, userdata
, environment
);
1036 status
= TpAllocTimer( &timer
, callback
, userdata
, environment
);
1039 SetLastError( RtlNtStatusToDosError(status
) );
1046 /***********************************************************************
1047 * CreateThreadpoolWait (KERNEL32.@)
1049 PTP_WAIT WINAPI
CreateThreadpoolWait( PTP_WAIT_CALLBACK callback
, PVOID userdata
,
1050 TP_CALLBACK_ENVIRON
*environment
)
1055 TRACE( "%p, %p, %p\n", callback
, userdata
, environment
);
1057 status
= TpAllocWait( &wait
, callback
, userdata
, environment
);
1060 SetLastError( RtlNtStatusToDosError(status
) );
1067 /***********************************************************************
1068 * CreateThreadpoolWork (KERNEL32.@)
1070 PTP_WORK WINAPI
CreateThreadpoolWork( PTP_WORK_CALLBACK callback
, PVOID userdata
,
1071 TP_CALLBACK_ENVIRON
*environment
)
1076 TRACE( "%p, %p, %p\n", callback
, userdata
, environment
);
1078 status
= TpAllocWork( &work
, callback
, userdata
, environment
);
1081 SetLastError( RtlNtStatusToDosError(status
) );
1088 /***********************************************************************
1089 * SetThreadpoolTimer (KERNEL32.@)
1091 VOID WINAPI
SetThreadpoolTimer( TP_TIMER
*timer
, FILETIME
*due_time
,
1092 DWORD period
, DWORD window_length
)
1094 LARGE_INTEGER timeout
;
1096 TRACE( "%p, %p, %u, %u\n", timer
, due_time
, period
, window_length
);
1100 timeout
.u
.LowPart
= due_time
->dwLowDateTime
;
1101 timeout
.u
.HighPart
= due_time
->dwHighDateTime
;
1104 TpSetTimer( timer
, due_time
? &timeout
: NULL
, period
, window_length
);
1107 /***********************************************************************
1108 * SetThreadpoolWait (KERNEL32.@)
1110 VOID WINAPI
SetThreadpoolWait( TP_WAIT
*wait
, HANDLE handle
, FILETIME
*due_time
)
1112 LARGE_INTEGER timeout
;
1114 TRACE( "%p, %p, %p\n", wait
, handle
, due_time
);
1122 timeout
.u
.LowPart
= due_time
->dwLowDateTime
;
1123 timeout
.u
.HighPart
= due_time
->dwHighDateTime
;
1126 TpSetWait( wait
, handle
, due_time
? &timeout
: NULL
);
1129 /***********************************************************************
1130 * TrySubmitThreadpoolCallback (KERNEL32.@)
1132 BOOL WINAPI
TrySubmitThreadpoolCallback( PTP_SIMPLE_CALLBACK callback
, PVOID userdata
,
1133 TP_CALLBACK_ENVIRON
*environment
)
1137 TRACE( "%p, %p, %p\n", callback
, userdata
, environment
);
1139 status
= TpSimpleTryPost( callback
, userdata
, environment
);
1142 SetLastError( RtlNtStatusToDosError(status
) );