1 /* Threads compatibility routines for libgcc2 and libobjc. */
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
4 Contributed by Mumit Khan <khan@xraylith.wisc.edu>.
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 /* As a special exception, if you link this library with other files,
24 some of which are compiled with GCC, to produce an executable,
25 this library does not by itself cause the resulting executable
26 to be covered by the GNU General Public License.
27 This exception does not however invalidate any other reasons why
28 the executable file might be covered by the GNU General Public License. */
30 #ifndef __gthr_win32_h
31 #define __gthr_win32_h
33 /* Windows32 threads specific definitions. The windows32 threading model
34 does not map well into pthread-inspired gcc's threading model, and so
35 there are caveats one needs to be aware of.
37 1. The destructor supplied to __gthread_key_create is ignored for
38 generic x86-win32 ports. This will certainly cause memory leaks
39 due to unreclaimed eh contexts (sizeof (eh_context) is at least
40 24 bytes for x86 currently).
42 This memory leak may be significant for long-running applications
43 that make heavy use of C++ EH.
45 However, Mingw runtime (version 0.3 or newer) provides a mechanism
46 to emulate pthreads key dtors; the runtime provides a special DLL,
47 linked in if -mthreads option is specified, that runs the dtors in
48 the reverse order of registration when each thread exits. If
49 -mthreads option is not given, a stub is linked in instead of the
50 DLL, which results in memory leak. Other x86-win32 ports can use
51 the same technique of course to avoid the leak.
53 2. The error codes returned are non-POSIX like, and cast into ints.
54 This may cause incorrect error return due to truncation values on
55 hw where sizeof (DWORD) > sizeof (int).
57 3. We might consider using Critical Sections instead of Windows32
58 mutexes for better performance, but emulating __gthread_mutex_trylock
59 interface becomes more complicated (Win9x does not support
60 TryEnterCriticalSectioni, while NT does).
62 The basic framework should work well enough. In the long term, GCC
63 needs to use Structured Exception Handling on Windows32. */
75 /* Key structure for maintaining thread specific storage */
76 static DWORD __gthread_objc_data_tls
= (DWORD
)-1;
78 /* Backend initialization functions */
80 /* Initialize the threads subsystem. */
82 __gthread_objc_init_thread_system(void)
84 /* Initialize the thread storage key */
85 if ((__gthread_objc_data_tls
= TlsAlloc()) != (DWORD
)-1)
91 /* Close the threads subsystem. */
93 __gthread_objc_close_thread_system(void)
95 if (__gthread_objc_data_tls
!= (DWORD
)-1)
96 TlsFree(__gthread_objc_data_tls
);
100 /* Backend thread functions */
102 /* Create a new thread of execution. */
104 __gthread_objc_thread_detach(void (*func
)(void *arg
), void *arg
)
109 if (!(win32_handle
= CreateThread(NULL
, 0, (LPTHREAD_START_ROUTINE
)func
,
110 arg
, 0, &thread_id
)))
113 return (objc_thread_t
)thread_id
;
116 /* Set the current thread's priority. */
118 __gthread_objc_thread_set_priority(int priority
)
120 int sys_priority
= 0;
124 case OBJC_THREAD_INTERACTIVE_PRIORITY
:
125 sys_priority
= THREAD_PRIORITY_NORMAL
;
128 case OBJC_THREAD_BACKGROUND_PRIORITY
:
129 sys_priority
= THREAD_PRIORITY_BELOW_NORMAL
;
131 case OBJC_THREAD_LOW_PRIORITY
:
132 sys_priority
= THREAD_PRIORITY_LOWEST
;
136 /* Change priority */
137 if (SetThreadPriority(GetCurrentThread(), sys_priority
))
143 /* Return the current thread's priority. */
145 __gthread_objc_thread_get_priority(void)
149 sys_priority
= GetThreadPriority(GetCurrentThread());
151 switch (sys_priority
)
153 case THREAD_PRIORITY_HIGHEST
:
154 case THREAD_PRIORITY_TIME_CRITICAL
:
155 case THREAD_PRIORITY_ABOVE_NORMAL
:
156 case THREAD_PRIORITY_NORMAL
:
157 return OBJC_THREAD_INTERACTIVE_PRIORITY
;
160 case THREAD_PRIORITY_BELOW_NORMAL
:
161 return OBJC_THREAD_BACKGROUND_PRIORITY
;
163 case THREAD_PRIORITY_IDLE
:
164 case THREAD_PRIORITY_LOWEST
:
165 return OBJC_THREAD_LOW_PRIORITY
;
168 /* Couldn't get priority. */
172 /* Yield our process time to another thread. */
174 __gthread_objc_thread_yield(void)
179 /* Terminate the current thread. */
181 __gthread_objc_thread_exit(void)
183 /* exit the thread */
184 ExitThread(__gthread_objc_thread_exit_status
);
186 /* Failed if we reached here */
190 /* Returns an integer value which uniquely describes a thread. */
192 __gthread_objc_thread_id(void)
194 return (objc_thread_t
)GetCurrentThreadId();
197 /* Sets the thread's local storage pointer. */
199 __gthread_objc_thread_set_data(void *value
)
201 if (TlsSetValue(__gthread_objc_data_tls
, value
))
207 /* Returns the thread's local storage pointer. */
209 __gthread_objc_thread_get_data(void)
214 lasterror
= GetLastError();
216 ptr
= TlsGetValue(__gthread_objc_data_tls
); /* Return thread data. */
218 SetLastError( lasterror
);
223 /* Backend mutex functions */
225 /* Allocate a mutex. */
227 __gthread_objc_mutex_allocate(objc_mutex_t mutex
)
229 if ((mutex
->backend
= (void *)CreateMutex(NULL
, 0, NULL
)) == NULL
)
235 /* Deallocate a mutex. */
237 __gthread_objc_mutex_deallocate(objc_mutex_t mutex
)
239 CloseHandle((HANDLE
)(mutex
->backend
));
243 /* Grab a lock on a mutex. */
245 __gthread_objc_mutex_lock(objc_mutex_t mutex
)
249 status
= WaitForSingleObject((HANDLE
)(mutex
->backend
), INFINITE
);
250 if (status
!= WAIT_OBJECT_0
&& status
!= WAIT_ABANDONED
)
256 /* Try to grab a lock on a mutex. */
258 __gthread_objc_mutex_trylock(objc_mutex_t mutex
)
262 status
= WaitForSingleObject((HANDLE
)(mutex
->backend
), 0);
263 if (status
!= WAIT_OBJECT_0
&& status
!= WAIT_ABANDONED
)
269 /* Unlock the mutex */
271 __gthread_objc_mutex_unlock(objc_mutex_t mutex
)
273 if (ReleaseMutex((HANDLE
)(mutex
->backend
)) == 0)
279 /* Backend condition mutex functions */
281 /* Allocate a condition. */
283 __gthread_objc_condition_allocate(objc_condition_t condition
)
289 /* Deallocate a condition. */
291 __gthread_objc_condition_deallocate(objc_condition_t condition
)
297 /* Wait on the condition */
299 __gthread_objc_condition_wait(objc_condition_t condition
, objc_mutex_t mutex
)
305 /* Wake up all threads waiting on this condition. */
307 __gthread_objc_condition_broadcast(objc_condition_t condition
)
313 /* Wake up one thread waiting on this condition. */
315 __gthread_objc_condition_signal(objc_condition_t condition
)
327 typedef DWORD __gthread_key_t
;
334 typedef HANDLE __gthread_mutex_t
;
336 #define __GTHREAD_ONCE_INIT {FALSE, -1}
337 #define __GTHREAD_MUTEX_INIT_FUNCTION __gthread_mutex_init_function
339 #if __MINGW32_MAJOR_VERSION >= 1 || \
340 (__MINGW32_MAJOR_VERSION == 0 && __MINGW32_MINOR_VERSION > 2)
341 #define MINGW32_SUPPORTS_MT_EH 1
342 extern int __mingwthr_key_dtor
PARAMS ((DWORD
, void (*) (void *)));
343 /* Mingw runtime >= v0.3 provides a magic variable that is set to non-zero
344 if -mthreads option was specified, or 0 otherwise. This is to get around
345 the lack of weak symbols in PE-COFF. */
350 __gthread_active_p (void)
352 #ifdef MINGW32_SUPPORTS_MT_EH
360 __gthread_once (__gthread_once_t
*once
, void (*func
) (void))
362 if (! __gthread_active_p ())
364 else if (once
== NULL
|| func
== NULL
)
369 if (InterlockedIncrement (&(once
->started
)) == 0)
376 /* Another thread is currently executing the code, so wait for it
377 to finish; yield the CPU in the meantime. If performance
378 does become an issue, the solution is to use an Event that
379 we wait on here (and set above), but that implies a place to
380 create the event before this routine is called. */
389 /* Windows32 thread local keys don't support destructors; this leads to
390 leaks, especially in threaded applications making extensive use of
391 C++ EH. Mingw uses a thread-support DLL to work-around this problem. */
393 __gthread_key_create (__gthread_key_t
*key
, void (*dtor
) (void *))
396 DWORD tls_index
= TlsAlloc ();
397 if (tls_index
!= 0xFFFFFFFF)
400 #ifdef MINGW32_SUPPORTS_MT_EH
401 /* Mingw runtime will run the dtors in reverse order for each thread
402 when the thread exits. */
403 status
= __mingwthr_key_dtor (*key
, dtor
);
407 status
= (int) GetLastError ();
411 /* Currently, this routine is called only for Mingw runtime, and if
412 -mthreads option is chosen to link in the thread support DLL. */
414 __gthread_key_dtor (__gthread_key_t key
, void *ptr
)
416 /* Nothing needed. */
421 __gthread_key_delete (__gthread_key_t key
)
423 return (TlsFree (key
) != 0) ? 0 : (int) GetLastError ();
427 __gthread_getspecific (__gthread_key_t key
)
432 lasterror
= GetLastError();
434 ptr
= TlsGetValue(key
);
436 SetLastError( lasterror
);
442 __gthread_setspecific (__gthread_key_t key
, const void *ptr
)
444 return (TlsSetValue (key
, (void*) ptr
) != 0) ? 0 : (int) GetLastError ();
448 __gthread_mutex_init_function (__gthread_mutex_t
*mutex
)
450 /* Create unnamed mutex with default security attr and no initial owner. */
451 *mutex
= CreateMutex (NULL
, 0, NULL
);
455 __gthread_mutex_lock (__gthread_mutex_t
*mutex
)
459 if (__gthread_active_p ())
461 if (WaitForSingleObject (*mutex
, INFINITE
) == WAIT_OBJECT_0
)
470 __gthread_mutex_trylock (__gthread_mutex_t
*mutex
)
474 if (__gthread_active_p ())
476 if (WaitForSingleObject (*mutex
, 0) == WAIT_OBJECT_0
)
485 __gthread_mutex_unlock (__gthread_mutex_t
*mutex
)
487 if (__gthread_active_p ())
488 return (ReleaseMutex (*mutex
) != 0) ? 0 : 1;
493 #endif /* _LIBOBJC */
495 #endif /* not __gthr_win32_h */