ddraw/tests: Rewrite LimitTest().
[wine.git] / dlls / msvcrt / thread.c
blobaf31534adbd33b5f014cff9a1417c47b5068f31a
1 /*
2 * msvcrt.dll thread functions
4 * Copyright 2000 Jon Griffiths
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
20 #include "msvcrt.h"
21 #include "wine/debug.h"
23 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
25 /********************************************************************/
27 typedef struct {
28 HANDLE thread;
29 MSVCRT__beginthread_start_routine_t start_address;
30 void *arglist;
31 } _beginthread_trampoline_t;
33 /*********************************************************************
34 * msvcrt_get_thread_data
36 * Return the thread local storage structure.
38 thread_data_t *msvcrt_get_thread_data(void)
40 thread_data_t *ptr;
41 DWORD err = GetLastError(); /* need to preserve last error */
43 if (!(ptr = TlsGetValue( msvcrt_tls_index )))
45 if (!(ptr = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*ptr) )))
46 _amsg_exit( _RT_THREAD );
47 if (!TlsSetValue( msvcrt_tls_index, ptr )) _amsg_exit( _RT_THREAD );
48 ptr->tid = GetCurrentThreadId();
49 ptr->handle = INVALID_HANDLE_VALUE;
50 ptr->random_seed = 1;
51 ptr->locinfo = MSVCRT_locale->locinfo;
52 ptr->mbcinfo = MSVCRT_locale->mbcinfo;
54 SetLastError( err );
55 return ptr;
58 /*********************************************************************
59 * _endthread (MSVCRT.@)
61 void CDECL _endthread(void)
63 thread_data_t *tls;
65 TRACE("(void)\n");
67 tls = TlsGetValue(msvcrt_tls_index);
68 if (tls && tls->handle != INVALID_HANDLE_VALUE)
70 CloseHandle(tls->handle);
71 tls->handle = INVALID_HANDLE_VALUE;
72 } else
73 WARN("tls=%p tls->handle=%p\n", tls, tls ? tls->handle : INVALID_HANDLE_VALUE);
75 /* FIXME */
76 ExitThread(0);
79 /*********************************************************************
80 * _endthreadex (MSVCRT.@)
82 void CDECL _endthreadex(
83 unsigned int retval) /* [in] Thread exit code */
85 TRACE("(%d)\n", retval);
87 /* FIXME */
88 ExitThread(retval);
91 /*********************************************************************
92 * _beginthread_trampoline
94 static DWORD CALLBACK _beginthread_trampoline(LPVOID arg)
96 _beginthread_trampoline_t local_trampoline;
97 thread_data_t *data = msvcrt_get_thread_data();
99 memcpy(&local_trampoline,arg,sizeof(local_trampoline));
100 data->handle = local_trampoline.thread;
101 MSVCRT_free(arg);
103 local_trampoline.start_address(local_trampoline.arglist);
104 _endthread();
105 return 0;
108 /*********************************************************************
109 * _beginthread (MSVCRT.@)
111 MSVCRT_uintptr_t CDECL _beginthread(
112 MSVCRT__beginthread_start_routine_t start_address, /* [in] Start address of routine that begins execution of new thread */
113 unsigned int stack_size, /* [in] Stack size for new thread or 0 */
114 void *arglist) /* [in] Argument list to be passed to new thread or NULL */
116 _beginthread_trampoline_t* trampoline;
117 HANDLE thread;
119 TRACE("(%p, %d, %p)\n", start_address, stack_size, arglist);
121 trampoline = MSVCRT_malloc(sizeof(*trampoline));
122 if(!trampoline) {
123 *MSVCRT__errno() = MSVCRT_EAGAIN;
124 return -1;
127 thread = CreateThread(NULL, stack_size, _beginthread_trampoline,
128 trampoline, CREATE_SUSPENDED, NULL);
129 if(!thread) {
130 MSVCRT_free(trampoline);
131 *MSVCRT__errno() = MSVCRT_EAGAIN;
132 return -1;
135 trampoline->thread = thread;
136 trampoline->start_address = start_address;
137 trampoline->arglist = arglist;
139 if(ResumeThread(thread) == -1) {
140 MSVCRT_free(trampoline);
141 *MSVCRT__errno() = MSVCRT_EAGAIN;
142 return -1;
145 return (MSVCRT_uintptr_t)thread;
148 /*********************************************************************
149 * _beginthreadex (MSVCRT.@)
151 MSVCRT_uintptr_t CDECL _beginthreadex(
152 void *security, /* [in] Security descriptor for new thread; must be NULL for Windows 9x applications */
153 unsigned int stack_size, /* [in] Stack size for new thread or 0 */
154 MSVCRT__beginthreadex_start_routine_t start_address, /* [in] Start address of routine that begins execution of new thread */
155 void *arglist, /* [in] Argument list to be passed to new thread or NULL */
156 unsigned int initflag, /* [in] Initial state of new thread (0 for running or CREATE_SUSPEND for suspended) */
157 unsigned int *thrdaddr) /* [out] Points to a 32-bit variable that receives the thread identifier */
159 TRACE("(%p, %d, %p, %p, %d, %p)\n", security, stack_size, start_address, arglist, initflag, thrdaddr);
161 /* FIXME */
162 return (MSVCRT_uintptr_t)CreateThread(security, stack_size,
163 start_address, arglist,
164 initflag, thrdaddr);
167 #if _MSVCR_VER>=80
168 /*********************************************************************
169 * _getptd (MSVCR80.@)
171 thread_data_t* CDECL _getptd(void)
173 FIXME("returns undocumented/not fully filled data\n");
174 return msvcrt_get_thread_data();
176 #endif