blob: 60d2fb216eb0793849bb36b2b8cf0c38a19c7109 [file] [log] [blame]
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +00001
Guido van Rossum66020991996-06-11 18:32:18 +00002/* Posix threads interface */
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +00003
Guido van Rossum66020991996-06-11 18:32:18 +00004#include <stdlib.h>
Guido van Rossum9e46e561998-10-07 16:39:47 +00005#include <string.h>
Martin v. Löwisa7a76d32002-10-04 07:21:24 +00006#if defined(__APPLE__) || defined(HAVE_PTHREAD_DESTRUCTOR)
Jack Jansen76689572002-01-15 20:36:14 +00007#define destructor xxdestructor
8#endif
Guido van Rossum66020991996-06-11 18:32:18 +00009#include <pthread.h>
Martin v. Löwisa7a76d32002-10-04 07:21:24 +000010#if defined(__APPLE__) || defined(HAVE_PTHREAD_DESTRUCTOR)
Jack Jansen76689572002-01-15 20:36:14 +000011#undef destructor
12#endif
Guido van Rossum80230992001-10-12 21:49:17 +000013#include <signal.h>
Martin v. Löwis42ab61e2002-03-17 17:19:00 +000014
Thomas Wouters0e3f5912006-08-11 14:57:12 +000015/* The POSIX spec requires that use of pthread_attr_setstacksize
16 be conditional on _POSIX_THREAD_ATTR_STACKSIZE being defined. */
17#ifdef _POSIX_THREAD_ATTR_STACKSIZE
18#ifndef THREAD_STACK_SIZE
19#define THREAD_STACK_SIZE 0 /* use default stack size */
20#endif
21/* for safety, ensure a viable minimum stacksize */
22#define THREAD_STACK_MIN 0x8000 /* 32kB */
23#else /* !_POSIX_THREAD_ATTR_STACKSIZE */
24#ifdef THREAD_STACK_SIZE
25#error "THREAD_STACK_SIZE defined but _POSIX_THREAD_ATTR_STACKSIZE undefined"
26#endif
27#endif
28
Martin v. Löwis42ab61e2002-03-17 17:19:00 +000029/* The POSIX spec says that implementations supporting the sem_*
30 family of functions must indicate this by defining
31 _POSIX_SEMAPHORES. */
Martin v. Löwiscc898662002-03-17 09:53:51 +000032#ifdef _POSIX_SEMAPHORES
Martin v. Löwis8b8fb3d2005-03-28 12:34:20 +000033/* On FreeBSD 4.x, _POSIX_SEMAPHORES is defined empty, so
34 we need to add 0 to make it work there as well. */
35#if (_POSIX_SEMAPHORES+0) == -1
Anthony Baxter19b23692005-03-16 04:15:07 +000036#define HAVE_BROKEN_POSIX_SEMAPHORES
37#else
Martin v. Löwiscc898662002-03-17 09:53:51 +000038#include <semaphore.h>
39#include <errno.h>
40#endif
Anthony Baxter19b23692005-03-16 04:15:07 +000041#endif
Guido van Rossum66020991996-06-11 18:32:18 +000042
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000043/* Before FreeBSD 5.4, system scope threads was very limited resource
44 in default setting. So the process scope is preferred to get
45 enough number of threads to work. */
46#ifdef __FreeBSD__
47#include <osreldate.h>
48#if __FreeBSD_version >= 500000 && __FreeBSD_version < 504101
49#undef PTHREAD_SYSTEM_SCHED_SUPPORTED
50#endif
51#endif
52
Martin v. Löwisb0233812002-12-11 13:12:30 +000053#if !defined(pthread_attr_default)
Guido van Rossumd6353e21997-05-13 17:51:13 +000054# define pthread_attr_default ((pthread_attr_t *)NULL)
Martin v. Löwisb0233812002-12-11 13:12:30 +000055#endif
56#if !defined(pthread_mutexattr_default)
Guido van Rossumd6353e21997-05-13 17:51:13 +000057# define pthread_mutexattr_default ((pthread_mutexattr_t *)NULL)
Martin v. Löwisb0233812002-12-11 13:12:30 +000058#endif
59#if !defined(pthread_condattr_default)
Guido van Rossumd6353e21997-05-13 17:51:13 +000060# define pthread_condattr_default ((pthread_condattr_t *)NULL)
Guido van Rossum1a623111996-08-08 18:53:41 +000061#endif
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +000062
Guido van Rossumd6353e21997-05-13 17:51:13 +000063
Martin v. Löwiscc898662002-03-17 09:53:51 +000064/* Whether or not to use semaphores directly rather than emulating them with
65 * mutexes and condition variables:
66 */
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +000067#if defined(_POSIX_SEMAPHORES) && !defined(HAVE_BROKEN_POSIX_SEMAPHORES)
Martin v. Löwiscc898662002-03-17 09:53:51 +000068# define USE_SEMAPHORES
69#else
70# undef USE_SEMAPHORES
71#endif
72
73
Guido van Rossum80230992001-10-12 21:49:17 +000074/* On platforms that don't use standard POSIX threads pthread_sigmask()
75 * isn't present. DEC threads uses sigprocmask() instead as do most
76 * other UNIX International compliant systems that don't have the full
77 * pthread implementation.
78 */
Jason Tishlerfac083d2003-07-22 15:20:49 +000079#if defined(HAVE_PTHREAD_SIGMASK) && !defined(HAVE_BROKEN_PTHREAD_SIGMASK)
Guido van Rossum80230992001-10-12 21:49:17 +000080# define SET_THREAD_SIGMASK pthread_sigmask
81#else
82# define SET_THREAD_SIGMASK sigprocmask
83#endif
84
85
Guido van Rossumb98b1b31994-05-11 08:42:04 +000086/* A pthread mutex isn't sufficient to model the Python lock type
87 * because, according to Draft 5 of the docs (P1003.4a/D5), both of the
88 * following are undefined:
89 * -> a thread tries to lock a mutex it already has locked
90 * -> a thread tries to unlock a mutex locked by a different thread
91 * pthread mutexes are designed for serializing threads over short pieces
92 * of code anyway, so wouldn't be an appropriate implementation of
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +000093 * Python's locks regardless.
Guido van Rossumb98b1b31994-05-11 08:42:04 +000094 *
95 * The pthread_lock struct implements a Python lock as a "locked?" bit
96 * and a <condition, mutex> pair. In general, if the bit can be acquired
97 * instantly, it is, else the pair is used to block the thread until the
98 * bit is cleared. 9 May 1994 tim@ksr.com
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +000099 */
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000100
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000101typedef struct {
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000102 char locked; /* 0=unlocked, 1=locked */
103 /* a <cond, mutex> pair to handle an acquire of a locked lock */
104 pthread_cond_t lock_released;
105 pthread_mutex_t mut;
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000106} pthread_lock;
107
Guido van Rossum9e46e561998-10-07 16:39:47 +0000108#define CHECK_STATUS(name) if (status != 0) { perror(name); error = 1; }
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000109
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000110/*
111 * Initialization.
112 */
Guido van Rossum9e46e561998-10-07 16:39:47 +0000113
114#ifdef _HAVE_BSDI
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000115static
116void _noop(void)
Guido van Rossum9e46e561998-10-07 16:39:47 +0000117{
118}
119
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000120static void
121PyThread__init_thread(void)
Guido van Rossum9e46e561998-10-07 16:39:47 +0000122{
123 /* DO AN INIT BY STARTING THE THREAD */
124 static int dummy = 0;
125 pthread_t thread1;
126 pthread_create(&thread1, NULL, (void *) _noop, &dummy);
127 pthread_join(thread1, NULL);
128}
129
130#else /* !_HAVE_BSDI */
131
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000132static void
133PyThread__init_thread(void)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000134{
Guido van Rossumd21744a1998-09-10 03:04:40 +0000135#if defined(_AIX) && defined(__GNUC__)
136 pthread_init();
137#endif
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000138}
139
Guido van Rossum9e46e561998-10-07 16:39:47 +0000140#endif /* !_HAVE_BSDI */
141
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000142/*
143 * Thread support.
144 */
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000145
146
Guido van Rossum3c288632001-10-16 21:13:49 +0000147long
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000148PyThread_start_new_thread(void (*func)(void *), void *arg)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000149{
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000150 pthread_t th;
Martin v. Löwis910ae622003-04-19 07:44:52 +0000151 int status;
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000152#if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
Jack Jansenc51395d2001-08-29 15:24:53 +0000153 pthread_attr_t attrs;
154#endif
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000155#if defined(THREAD_STACK_SIZE)
156 size_t tss;
157#endif
158
Guido van Rossum65d5b571998-12-21 19:32:43 +0000159 dprintf(("PyThread_start_new_thread called\n"));
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000160 if (!initialized)
Guido van Rossum65d5b571998-12-21 19:32:43 +0000161 PyThread_init_thread();
Guido van Rossumd6353e21997-05-13 17:51:13 +0000162
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000163#if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000164 if (pthread_attr_init(&attrs) != 0)
165 return -1;
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000166#endif
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000167#if defined(THREAD_STACK_SIZE)
168 tss = (_pythread_stacksize != 0) ? _pythread_stacksize
169 : THREAD_STACK_SIZE;
170 if (tss != 0) {
171 if (pthread_attr_setstacksize(&attrs, tss) != 0) {
172 pthread_attr_destroy(&attrs);
173 return -1;
174 }
175 }
Jack Jansenc51395d2001-08-29 15:24:53 +0000176#endif
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000177#if defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000178 pthread_attr_setscope(&attrs, PTHREAD_SCOPE_SYSTEM);
179#endif
Guido van Rossum80230992001-10-12 21:49:17 +0000180
Martin v. Löwis910ae622003-04-19 07:44:52 +0000181 status = pthread_create(&th,
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000182#if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
Jack Jansenc51395d2001-08-29 15:24:53 +0000183 &attrs,
184#else
Guido van Rossumd6353e21997-05-13 17:51:13 +0000185 (pthread_attr_t*)NULL,
Jack Jansenc51395d2001-08-29 15:24:53 +0000186#endif
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000187 (void* (*)(void *))func,
Guido van Rossumd6353e21997-05-13 17:51:13 +0000188 (void *)arg
Guido van Rossumd6353e21997-05-13 17:51:13 +0000189 );
Guido van Rossum80230992001-10-12 21:49:17 +0000190
Fred Drake03459a52001-11-09 16:00:41 +0000191#if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
Jack Jansenc51395d2001-08-29 15:24:53 +0000192 pthread_attr_destroy(&attrs);
193#endif
Martin v. Löwis910ae622003-04-19 07:44:52 +0000194 if (status != 0)
195 return -1;
196
Martin v. Löwis910ae622003-04-19 07:44:52 +0000197 pthread_detach(th);
Martin v. Löwis910ae622003-04-19 07:44:52 +0000198
Guido van Rossum3c288632001-10-16 21:13:49 +0000199#if SIZEOF_PTHREAD_T <= SIZEOF_LONG
200 return (long) th;
201#else
202 return (long) *(long *) &th;
203#endif
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000204}
205
Trent Mick635f6fb2000-08-23 21:33:05 +0000206/* XXX This implementation is considered (to quote Tim Peters) "inherently
207 hosed" because:
Skip Montanaro6babcc22004-03-03 08:42:23 +0000208 - It does not guarantee the promise that a non-zero integer is returned.
Trent Mick635f6fb2000-08-23 21:33:05 +0000209 - The cast to long is inherently unsafe.
210 - It is not clear that the 'volatile' (for AIX?) and ugly casting in the
211 latter return statement (for Alpha OSF/1) are any longer necessary.
212*/
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000213long
214PyThread_get_thread_ident(void)
Guido van Rossume944da81994-05-23 12:43:41 +0000215{
Guido van Rossum44ee4791998-08-27 19:21:53 +0000216 volatile pthread_t threadid;
Guido van Rossume944da81994-05-23 12:43:41 +0000217 if (!initialized)
Guido van Rossum65d5b571998-12-21 19:32:43 +0000218 PyThread_init_thread();
Guido van Rossum2565bff1995-01-09 17:50:47 +0000219 /* Jump through some hoops for Alpha OSF/1 */
220 threadid = pthread_self();
Trent Mick635f6fb2000-08-23 21:33:05 +0000221#if SIZEOF_PTHREAD_T <= SIZEOF_LONG
222 return (long) threadid;
223#else
Guido van Rossum2565bff1995-01-09 17:50:47 +0000224 return (long) *(long *) &threadid;
Trent Mick635f6fb2000-08-23 21:33:05 +0000225#endif
Guido van Rossume944da81994-05-23 12:43:41 +0000226}
227
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000228static void
229do_PyThread_exit_thread(int no_cleanup)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000230{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000231 dprintf(("PyThread_exit_thread called\n"));
Guido van Rossum730806d1998-04-10 22:27:42 +0000232 if (!initialized) {
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000233 if (no_cleanup)
234 _exit(0);
235 else
236 exit(0);
Guido van Rossum730806d1998-04-10 22:27:42 +0000237 }
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000238}
239
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000240void
241PyThread_exit_thread(void)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000242{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000243 do_PyThread_exit_thread(0);
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000244}
245
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000246void
247PyThread__exit_thread(void)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000248{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000249 do_PyThread_exit_thread(1);
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000250}
251
252#ifndef NO_EXIT_PROG
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000253static void
254do_PyThread_exit_prog(int status, int no_cleanup)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000255{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000256 dprintf(("PyThread_exit_prog(%d) called\n", status));
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000257 if (!initialized)
258 if (no_cleanup)
259 _exit(status);
260 else
261 exit(status);
262}
263
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000264void
265PyThread_exit_prog(int status)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000266{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000267 do_PyThread_exit_prog(status, 0);
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000268}
269
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000270void
271PyThread__exit_prog(int status)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000272{
Guido van Rossum65d5b571998-12-21 19:32:43 +0000273 do_PyThread_exit_prog(status, 1);
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000274}
275#endif /* NO_EXIT_PROG */
276
Martin v. Löwiscc898662002-03-17 09:53:51 +0000277#ifdef USE_SEMAPHORES
278
279/*
280 * Lock support.
281 */
282
283PyThread_type_lock
284PyThread_allocate_lock(void)
285{
286 sem_t *lock;
287 int status, error = 0;
288
289 dprintf(("PyThread_allocate_lock called\n"));
290 if (!initialized)
291 PyThread_init_thread();
292
293 lock = (sem_t *)malloc(sizeof(sem_t));
294
295 if (lock) {
296 status = sem_init(lock,0,1);
297 CHECK_STATUS("sem_init");
298
299 if (error) {
300 free((void *)lock);
301 lock = NULL;
302 }
303 }
304
305 dprintf(("PyThread_allocate_lock() -> %p\n", lock));
306 return (PyThread_type_lock)lock;
307}
308
309void
310PyThread_free_lock(PyThread_type_lock lock)
311{
312 sem_t *thelock = (sem_t *)lock;
313 int status, error = 0;
314
315 dprintf(("PyThread_free_lock(%p) called\n", lock));
316
317 if (!thelock)
318 return;
319
320 status = sem_destroy(thelock);
321 CHECK_STATUS("sem_destroy");
322
323 free((void *)thelock);
324}
325
326/*
327 * As of February 2002, Cygwin thread implementations mistakenly report error
328 * codes in the return value of the sem_ calls (like the pthread_ functions).
329 * Correct implementations return -1 and put the code in errno. This supports
330 * either.
331 */
332static int
333fix_status(int status)
334{
335 return (status == -1) ? errno : status;
336}
337
338int
339PyThread_acquire_lock(PyThread_type_lock lock, int waitflag)
340{
341 int success;
342 sem_t *thelock = (sem_t *)lock;
343 int status, error = 0;
344
345 dprintf(("PyThread_acquire_lock(%p, %d) called\n", lock, waitflag));
346
347 do {
348 if (waitflag)
349 status = fix_status(sem_wait(thelock));
350 else
351 status = fix_status(sem_trywait(thelock));
352 } while (status == EINTR); /* Retry if interrupted by a signal */
353
354 if (waitflag) {
355 CHECK_STATUS("sem_wait");
356 } else if (status != EAGAIN) {
357 CHECK_STATUS("sem_trywait");
358 }
359
360 success = (status == 0) ? 1 : 0;
361
362 dprintf(("PyThread_acquire_lock(%p, %d) -> %d\n", lock, waitflag, success));
363 return success;
364}
365
366void
367PyThread_release_lock(PyThread_type_lock lock)
368{
369 sem_t *thelock = (sem_t *)lock;
370 int status, error = 0;
371
372 dprintf(("PyThread_release_lock(%p) called\n", lock));
373
374 status = sem_post(thelock);
375 CHECK_STATUS("sem_post");
376}
377
378#else /* USE_SEMAPHORES */
379
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000380/*
381 * Lock support.
382 */
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000383PyThread_type_lock
384PyThread_allocate_lock(void)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000385{
386 pthread_lock *lock;
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000387 int status, error = 0;
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000388
Guido van Rossum65d5b571998-12-21 19:32:43 +0000389 dprintf(("PyThread_allocate_lock called\n"));
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000390 if (!initialized)
Guido van Rossum65d5b571998-12-21 19:32:43 +0000391 PyThread_init_thread();
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000392
393 lock = (pthread_lock *) malloc(sizeof(pthread_lock));
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000394 if (lock) {
Armin Rigoa6eb56c2005-09-20 18:07:47 +0000395 memset((void *)lock, '\0', sizeof(pthread_lock));
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000396 lock->locked = 0;
397
398 status = pthread_mutex_init(&lock->mut,
399 pthread_mutexattr_default);
400 CHECK_STATUS("pthread_mutex_init");
401
402 status = pthread_cond_init(&lock->lock_released,
403 pthread_condattr_default);
404 CHECK_STATUS("pthread_cond_init");
405
406 if (error) {
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000407 free((void *)lock);
408 lock = 0;
409 }
410 }
411
Fred Drakea44d3532000-06-30 15:01:00 +0000412 dprintf(("PyThread_allocate_lock() -> %p\n", lock));
Guido van Rossum65d5b571998-12-21 19:32:43 +0000413 return (PyThread_type_lock) lock;
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000414}
415
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000416void
417PyThread_free_lock(PyThread_type_lock lock)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000418{
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000419 pthread_lock *thelock = (pthread_lock *)lock;
420 int status, error = 0;
421
Fred Drakea44d3532000-06-30 15:01:00 +0000422 dprintf(("PyThread_free_lock(%p) called\n", lock));
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000423
424 status = pthread_mutex_destroy( &thelock->mut );
425 CHECK_STATUS("pthread_mutex_destroy");
426
427 status = pthread_cond_destroy( &thelock->lock_released );
428 CHECK_STATUS("pthread_cond_destroy");
429
430 free((void *)thelock);
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000431}
432
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000433int
434PyThread_acquire_lock(PyThread_type_lock lock, int waitflag)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000435{
436 int success;
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000437 pthread_lock *thelock = (pthread_lock *)lock;
438 int status, error = 0;
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000439
Fred Drakea44d3532000-06-30 15:01:00 +0000440 dprintf(("PyThread_acquire_lock(%p, %d) called\n", lock, waitflag));
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000441
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000442 status = pthread_mutex_lock( &thelock->mut );
443 CHECK_STATUS("pthread_mutex_lock[1]");
444 success = thelock->locked == 0;
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000445
446 if ( !success && waitflag ) {
447 /* continue trying until we get the lock */
448
449 /* mut must be locked by me -- part of the condition
450 * protocol */
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000451 while ( thelock->locked ) {
452 status = pthread_cond_wait(&thelock->lock_released,
453 &thelock->mut);
454 CHECK_STATUS("pthread_cond_wait");
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000455 }
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000456 success = 1;
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000457 }
Martin v. Löwis1509a152003-04-18 11:11:09 +0000458 if (success) thelock->locked = 1;
459 status = pthread_mutex_unlock( &thelock->mut );
460 CHECK_STATUS("pthread_mutex_unlock[1]");
461
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000462 if (error) success = 0;
Fred Drakea44d3532000-06-30 15:01:00 +0000463 dprintf(("PyThread_acquire_lock(%p, %d) -> %d\n", lock, waitflag, success));
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000464 return success;
465}
466
Thomas Woutersf70ef4f2000-07-22 18:47:25 +0000467void
468PyThread_release_lock(PyThread_type_lock lock)
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000469{
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000470 pthread_lock *thelock = (pthread_lock *)lock;
471 int status, error = 0;
472
Fred Drakea44d3532000-06-30 15:01:00 +0000473 dprintf(("PyThread_release_lock(%p) called\n", lock));
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000474
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000475 status = pthread_mutex_lock( &thelock->mut );
476 CHECK_STATUS("pthread_mutex_lock[3]");
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000477
Guido van Rossumb98b1b31994-05-11 08:42:04 +0000478 thelock->locked = 0;
479
480 status = pthread_mutex_unlock( &thelock->mut );
481 CHECK_STATUS("pthread_mutex_unlock[3]");
482
483 /* wake up someone (anyone, if any) waiting on the lock */
484 status = pthread_cond_signal( &thelock->lock_released );
485 CHECK_STATUS("pthread_cond_signal");
Guido van Rossum2c8cb9f1994-05-09 15:12:46 +0000486}
Martin v. Löwiscc898662002-03-17 09:53:51 +0000487
488#endif /* USE_SEMAPHORES */
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000489
490/* set the thread stack size.
491 * Return 0 if size is valid, -1 if size is invalid,
492 * -2 if setting stack size is not supported.
493 */
494static int
495_pythread_pthread_set_stacksize(size_t size)
496{
497#if defined(THREAD_STACK_SIZE)
498 pthread_attr_t attrs;
499 size_t tss_min;
500 int rc = 0;
501#endif
502
503 /* set to default */
504 if (size == 0) {
505 _pythread_stacksize = 0;
506 return 0;
507 }
508
509#if defined(THREAD_STACK_SIZE)
510#if defined(PTHREAD_STACK_MIN)
511 tss_min = PTHREAD_STACK_MIN > THREAD_STACK_MIN ? PTHREAD_STACK_MIN
512 : THREAD_STACK_MIN;
513#else
514 tss_min = THREAD_STACK_MIN;
515#endif
516 if (size >= tss_min) {
517 /* validate stack size by setting thread attribute */
518 if (pthread_attr_init(&attrs) == 0) {
519 rc = pthread_attr_setstacksize(&attrs, size);
520 pthread_attr_destroy(&attrs);
521 if (rc == 0) {
522 _pythread_stacksize = size;
523 return 0;
524 }
525 }
526 }
527 return -1;
528#else
529 return -2;
530#endif
531}
532
533#define THREAD_SET_STACKSIZE(x) _pythread_pthread_set_stacksize(x)