1994-05-09 12:12:46 -03:00
|
|
|
|
1996-06-11 15:32:18 -03:00
|
|
|
/* Posix threads interface */
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
1998-10-07 13:39:47 -03:00
|
|
|
#include <string.h>
|
2002-01-15 16:36:14 -04:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#define destructor xxdestructor
|
|
|
|
#endif
|
1996-06-11 15:32:18 -03:00
|
|
|
#include <pthread.h>
|
2002-01-15 16:36:14 -04:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#undef destructor
|
|
|
|
#endif
|
2001-10-12 18:49:17 -03:00
|
|
|
#include <signal.h>
|
2002-03-17 13:19:00 -04:00
|
|
|
|
|
|
|
/* The POSIX spec says that implementations supporting the sem_*
|
|
|
|
family of functions must indicate this by defining
|
|
|
|
_POSIX_SEMAPHORES. */
|
2002-03-17 05:53:51 -04:00
|
|
|
#ifdef _POSIX_SEMAPHORES
|
|
|
|
#include <semaphore.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#endif
|
1994-05-09 12:12:46 -03:00
|
|
|
|
1996-08-08 15:53:41 -03:00
|
|
|
|
1997-05-13 14:51:13 -03:00
|
|
|
/* try to determine what version of the Pthread Standard is installed.
|
|
|
|
* this is important, since all sorts of parameter types changed from
|
|
|
|
* draft to draft and there are several (incompatible) drafts in
|
|
|
|
* common use. these macros are a start, at least.
|
|
|
|
* 12 May 1997 -- david arnold <davida@pobox.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(__ultrix) && defined(__mips) && defined(_DECTHREADS_)
|
|
|
|
/* _DECTHREADS_ is defined in cma.h which is included by pthread.h */
|
|
|
|
# define PY_PTHREAD_D4
|
|
|
|
|
|
|
|
#elif defined(__osf__) && defined (__alpha)
|
|
|
|
/* _DECTHREADS_ is defined in cma.h which is included by pthread.h */
|
|
|
|
# if !defined(_PTHREAD_ENV_ALPHA) || defined(_PTHREAD_USE_D4) || defined(PTHREAD_USE_D4)
|
|
|
|
# define PY_PTHREAD_D4
|
|
|
|
# else
|
|
|
|
# define PY_PTHREAD_STD
|
|
|
|
# endif
|
|
|
|
|
|
|
|
#elif defined(_AIX)
|
1996-08-08 15:53:41 -03:00
|
|
|
/* SCHED_BG_NP is defined if using AIX DCE pthreads
|
|
|
|
* but it is unsupported by AIX 4 pthreads. Default
|
|
|
|
* attributes for AIX 4 pthreads equal to NULL. For
|
|
|
|
* AIX DCE pthreads they should be left unchanged.
|
|
|
|
*/
|
1997-05-13 14:51:13 -03:00
|
|
|
# if !defined(SCHED_BG_NP)
|
|
|
|
# define PY_PTHREAD_STD
|
|
|
|
# else
|
|
|
|
# define PY_PTHREAD_D7
|
|
|
|
# endif
|
|
|
|
|
1997-05-22 17:41:59 -03:00
|
|
|
#elif defined(__DGUX)
|
|
|
|
# define PY_PTHREAD_D6
|
1997-06-02 19:25:45 -03:00
|
|
|
|
1998-05-14 18:01:27 -03:00
|
|
|
#elif defined(__hpux) && defined(_DECTHREADS_)
|
1998-05-07 10:28:23 -03:00
|
|
|
# define PY_PTHREAD_D4
|
|
|
|
|
1997-06-02 19:25:45 -03:00
|
|
|
#else /* Default case */
|
|
|
|
# define PY_PTHREAD_STD
|
|
|
|
|
1996-08-08 15:53:41 -03:00
|
|
|
#endif
|
|
|
|
|
2001-08-29 12:24:53 -03:00
|
|
|
#ifdef USE_GUSI
|
|
|
|
/* The Macintosh GUSI I/O library sets the stackspace to
|
|
|
|
** 20KB, much too low. We up it to 64K.
|
|
|
|
*/
|
|
|
|
#define THREAD_STACK_SIZE 0x10000
|
|
|
|
#endif
|
|
|
|
|
1997-05-13 14:51:13 -03:00
|
|
|
|
|
|
|
/* set default attribute object for different versions */
|
|
|
|
|
|
|
|
#if defined(PY_PTHREAD_D4) || defined(PY_PTHREAD_D7)
|
|
|
|
# define pthread_attr_default pthread_attr_default
|
|
|
|
# define pthread_mutexattr_default pthread_mutexattr_default
|
|
|
|
# define pthread_condattr_default pthread_condattr_default
|
1997-05-22 17:41:59 -03:00
|
|
|
#elif defined(PY_PTHREAD_STD) || defined(PY_PTHREAD_D6)
|
1997-05-13 14:51:13 -03:00
|
|
|
# define pthread_attr_default ((pthread_attr_t *)NULL)
|
|
|
|
# define pthread_mutexattr_default ((pthread_mutexattr_t *)NULL)
|
|
|
|
# define pthread_condattr_default ((pthread_condattr_t *)NULL)
|
1996-08-08 15:53:41 -03:00
|
|
|
#endif
|
1994-05-09 12:12:46 -03:00
|
|
|
|
1997-05-13 14:51:13 -03:00
|
|
|
|
2002-03-17 05:53:51 -04:00
|
|
|
/* Whether or not to use semaphores directly rather than emulating them with
|
|
|
|
* mutexes and condition variables:
|
|
|
|
*/
|
|
|
|
#ifdef _POSIX_SEMAPHORES
|
|
|
|
# define USE_SEMAPHORES
|
|
|
|
#else
|
|
|
|
# undef USE_SEMAPHORES
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-10-12 18:49:17 -03:00
|
|
|
/* On platforms that don't use standard POSIX threads pthread_sigmask()
|
|
|
|
* isn't present. DEC threads uses sigprocmask() instead as do most
|
|
|
|
* other UNIX International compliant systems that don't have the full
|
|
|
|
* pthread implementation.
|
|
|
|
*/
|
2001-10-15 11:34:42 -03:00
|
|
|
#ifdef HAVE_PTHREAD_SIGMASK
|
2001-10-12 18:49:17 -03:00
|
|
|
# define SET_THREAD_SIGMASK pthread_sigmask
|
|
|
|
#else
|
|
|
|
# define SET_THREAD_SIGMASK sigprocmask
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1994-05-11 05:42:04 -03:00
|
|
|
/* A pthread mutex isn't sufficient to model the Python lock type
|
|
|
|
* because, according to Draft 5 of the docs (P1003.4a/D5), both of the
|
|
|
|
* following are undefined:
|
|
|
|
* -> a thread tries to lock a mutex it already has locked
|
|
|
|
* -> a thread tries to unlock a mutex locked by a different thread
|
|
|
|
* pthread mutexes are designed for serializing threads over short pieces
|
|
|
|
* of code anyway, so wouldn't be an appropriate implementation of
|
1994-05-09 12:12:46 -03:00
|
|
|
* Python's locks regardless.
|
1994-05-11 05:42:04 -03:00
|
|
|
*
|
|
|
|
* The pthread_lock struct implements a Python lock as a "locked?" bit
|
|
|
|
* and a <condition, mutex> pair. In general, if the bit can be acquired
|
|
|
|
* instantly, it is, else the pair is used to block the thread until the
|
|
|
|
* bit is cleared. 9 May 1994 tim@ksr.com
|
1994-05-09 12:12:46 -03:00
|
|
|
*/
|
1994-05-11 05:42:04 -03:00
|
|
|
|
1994-05-09 12:12:46 -03:00
|
|
|
typedef struct {
|
1994-05-11 05:42:04 -03:00
|
|
|
char locked; /* 0=unlocked, 1=locked */
|
|
|
|
/* a <cond, mutex> pair to handle an acquire of a locked lock */
|
|
|
|
pthread_cond_t lock_released;
|
|
|
|
pthread_mutex_t mut;
|
1994-05-09 12:12:46 -03:00
|
|
|
} pthread_lock;
|
|
|
|
|
1998-10-07 13:39:47 -03:00
|
|
|
#define CHECK_STATUS(name) if (status != 0) { perror(name); error = 1; }
|
1994-05-11 05:42:04 -03:00
|
|
|
|
1994-05-09 12:12:46 -03:00
|
|
|
/*
|
|
|
|
* Initialization.
|
|
|
|
*/
|
1998-10-07 13:39:47 -03:00
|
|
|
|
|
|
|
#ifdef _HAVE_BSDI
|
2000-07-22 15:47:25 -03:00
|
|
|
static
|
|
|
|
void _noop(void)
|
1998-10-07 13:39:47 -03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
static void
|
|
|
|
PyThread__init_thread(void)
|
1998-10-07 13:39:47 -03:00
|
|
|
{
|
|
|
|
/* DO AN INIT BY STARTING THE THREAD */
|
|
|
|
static int dummy = 0;
|
|
|
|
pthread_t thread1;
|
|
|
|
pthread_create(&thread1, NULL, (void *) _noop, &dummy);
|
|
|
|
pthread_join(thread1, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !_HAVE_BSDI */
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
static void
|
|
|
|
PyThread__init_thread(void)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1998-09-10 00:04:40 -03:00
|
|
|
#if defined(_AIX) && defined(__GNUC__)
|
|
|
|
pthread_init();
|
|
|
|
#endif
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
1998-10-07 13:39:47 -03:00
|
|
|
#endif /* !_HAVE_BSDI */
|
|
|
|
|
1994-05-09 12:12:46 -03:00
|
|
|
/*
|
|
|
|
* Thread support.
|
|
|
|
*/
|
1994-05-11 05:42:04 -03:00
|
|
|
|
|
|
|
|
2001-10-16 18:13:49 -03:00
|
|
|
long
|
2000-07-22 15:47:25 -03:00
|
|
|
PyThread_start_new_thread(void (*func)(void *), void *arg)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
|
|
|
pthread_t th;
|
1994-05-23 09:43:41 -03:00
|
|
|
int success;
|
2001-10-12 18:49:17 -03:00
|
|
|
sigset_t oldmask, newmask;
|
2001-09-10 11:10:54 -03:00
|
|
|
#if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
|
2001-08-29 12:24:53 -03:00
|
|
|
pthread_attr_t attrs;
|
|
|
|
#endif
|
1998-12-21 15:32:43 -04:00
|
|
|
dprintf(("PyThread_start_new_thread called\n"));
|
1994-05-09 12:12:46 -03:00
|
|
|
if (!initialized)
|
1998-12-21 15:32:43 -04:00
|
|
|
PyThread_init_thread();
|
1997-05-13 14:51:13 -03:00
|
|
|
|
2001-09-10 11:10:54 -03:00
|
|
|
#if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
|
2001-08-29 12:24:53 -03:00
|
|
|
pthread_attr_init(&attrs);
|
2001-09-10 11:10:54 -03:00
|
|
|
#endif
|
|
|
|
#ifdef THREAD_STACK_SIZE
|
2001-08-29 12:24:53 -03:00
|
|
|
pthread_attr_setstacksize(&attrs, THREAD_STACK_SIZE);
|
2001-09-10 11:10:54 -03:00
|
|
|
#endif
|
|
|
|
#ifdef PTHREAD_SYSTEM_SCHED_SUPPORTED
|
|
|
|
pthread_attr_setscope(&attrs, PTHREAD_SCOPE_SYSTEM);
|
2001-08-29 12:24:53 -03:00
|
|
|
#endif
|
2001-10-12 18:49:17 -03:00
|
|
|
|
|
|
|
/* Mask all signals in the current thread before creating the new
|
|
|
|
* thread. This causes the new thread to start with all signals
|
|
|
|
* blocked.
|
|
|
|
*/
|
|
|
|
sigfillset(&newmask);
|
|
|
|
SET_THREAD_SIGMASK(SIG_BLOCK, &newmask, &oldmask);
|
|
|
|
|
1997-05-13 14:51:13 -03:00
|
|
|
success = pthread_create(&th,
|
|
|
|
#if defined(PY_PTHREAD_D4)
|
|
|
|
pthread_attr_default,
|
|
|
|
(pthread_startroutine_t)func,
|
|
|
|
(pthread_addr_t)arg
|
1997-05-22 17:41:59 -03:00
|
|
|
#elif defined(PY_PTHREAD_D6)
|
|
|
|
pthread_attr_default,
|
2000-07-22 15:47:25 -03:00
|
|
|
(void* (*)(void *))func,
|
1997-05-22 17:41:59 -03:00
|
|
|
arg
|
1997-05-13 14:51:13 -03:00
|
|
|
#elif defined(PY_PTHREAD_D7)
|
|
|
|
pthread_attr_default,
|
|
|
|
func,
|
|
|
|
arg
|
|
|
|
#elif defined(PY_PTHREAD_STD)
|
2001-09-10 11:10:54 -03:00
|
|
|
#if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
|
2001-08-29 12:24:53 -03:00
|
|
|
&attrs,
|
|
|
|
#else
|
1997-05-13 14:51:13 -03:00
|
|
|
(pthread_attr_t*)NULL,
|
2001-08-29 12:24:53 -03:00
|
|
|
#endif
|
2000-07-22 15:47:25 -03:00
|
|
|
(void* (*)(void *))func,
|
1997-05-13 14:51:13 -03:00
|
|
|
(void *)arg
|
|
|
|
#endif
|
|
|
|
);
|
2001-10-12 18:49:17 -03:00
|
|
|
|
|
|
|
/* Restore signal mask for original thread */
|
|
|
|
SET_THREAD_SIGMASK(SIG_SETMASK, &oldmask, NULL);
|
|
|
|
|
2001-11-09 12:00:41 -04:00
|
|
|
#if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED)
|
2001-08-29 12:24:53 -03:00
|
|
|
pthread_attr_destroy(&attrs);
|
|
|
|
#endif
|
1999-03-15 16:27:53 -04:00
|
|
|
if (success == 0) {
|
1998-09-04 10:38:32 -03:00
|
|
|
#if defined(PY_PTHREAD_D4) || defined(PY_PTHREAD_D6) || defined(PY_PTHREAD_D7)
|
1997-05-13 14:51:13 -03:00
|
|
|
pthread_detach(&th);
|
|
|
|
#elif defined(PY_PTHREAD_STD)
|
1997-04-30 16:59:22 -03:00
|
|
|
pthread_detach(th);
|
1997-05-13 14:51:13 -03:00
|
|
|
#endif
|
|
|
|
}
|
2001-10-16 18:13:49 -03:00
|
|
|
#if SIZEOF_PTHREAD_T <= SIZEOF_LONG
|
|
|
|
return (long) th;
|
|
|
|
#else
|
|
|
|
return (long) *(long *) &th;
|
|
|
|
#endif
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
2000-08-23 18:33:05 -03:00
|
|
|
/* XXX This implementation is considered (to quote Tim Peters) "inherently
|
|
|
|
hosed" because:
|
|
|
|
- It does not guanrantee the promise that a non-zero integer is returned.
|
|
|
|
- The cast to long is inherently unsafe.
|
|
|
|
- It is not clear that the 'volatile' (for AIX?) and ugly casting in the
|
|
|
|
latter return statement (for Alpha OSF/1) are any longer necessary.
|
|
|
|
*/
|
2000-07-22 15:47:25 -03:00
|
|
|
long
|
|
|
|
PyThread_get_thread_ident(void)
|
1994-05-23 09:43:41 -03:00
|
|
|
{
|
1998-08-27 16:21:53 -03:00
|
|
|
volatile pthread_t threadid;
|
1994-05-23 09:43:41 -03:00
|
|
|
if (!initialized)
|
1998-12-21 15:32:43 -04:00
|
|
|
PyThread_init_thread();
|
1995-01-09 13:50:47 -04:00
|
|
|
/* Jump through some hoops for Alpha OSF/1 */
|
|
|
|
threadid = pthread_self();
|
2000-08-23 18:33:05 -03:00
|
|
|
#if SIZEOF_PTHREAD_T <= SIZEOF_LONG
|
|
|
|
return (long) threadid;
|
|
|
|
#else
|
1995-01-09 13:50:47 -04:00
|
|
|
return (long) *(long *) &threadid;
|
2000-08-23 18:33:05 -03:00
|
|
|
#endif
|
1994-05-23 09:43:41 -03:00
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
static void
|
|
|
|
do_PyThread_exit_thread(int no_cleanup)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1998-12-21 15:32:43 -04:00
|
|
|
dprintf(("PyThread_exit_thread called\n"));
|
1998-04-10 19:27:42 -03:00
|
|
|
if (!initialized) {
|
1994-05-09 12:12:46 -03:00
|
|
|
if (no_cleanup)
|
|
|
|
_exit(0);
|
|
|
|
else
|
|
|
|
exit(0);
|
1998-04-10 19:27:42 -03:00
|
|
|
}
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
void
|
|
|
|
PyThread_exit_thread(void)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1998-12-21 15:32:43 -04:00
|
|
|
do_PyThread_exit_thread(0);
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
void
|
|
|
|
PyThread__exit_thread(void)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1998-12-21 15:32:43 -04:00
|
|
|
do_PyThread_exit_thread(1);
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef NO_EXIT_PROG
|
2000-07-22 15:47:25 -03:00
|
|
|
static void
|
|
|
|
do_PyThread_exit_prog(int status, int no_cleanup)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1998-12-21 15:32:43 -04:00
|
|
|
dprintf(("PyThread_exit_prog(%d) called\n", status));
|
1994-05-09 12:12:46 -03:00
|
|
|
if (!initialized)
|
|
|
|
if (no_cleanup)
|
|
|
|
_exit(status);
|
|
|
|
else
|
|
|
|
exit(status);
|
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
void
|
|
|
|
PyThread_exit_prog(int status)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1998-12-21 15:32:43 -04:00
|
|
|
do_PyThread_exit_prog(status, 0);
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
void
|
|
|
|
PyThread__exit_prog(int status)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1998-12-21 15:32:43 -04:00
|
|
|
do_PyThread_exit_prog(status, 1);
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
#endif /* NO_EXIT_PROG */
|
|
|
|
|
2002-03-17 05:53:51 -04:00
|
|
|
#ifdef USE_SEMAPHORES
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lock support.
|
|
|
|
*/
|
|
|
|
|
|
|
|
PyThread_type_lock
|
|
|
|
PyThread_allocate_lock(void)
|
|
|
|
{
|
|
|
|
sem_t *lock;
|
|
|
|
int status, error = 0;
|
|
|
|
|
|
|
|
dprintf(("PyThread_allocate_lock called\n"));
|
|
|
|
if (!initialized)
|
|
|
|
PyThread_init_thread();
|
|
|
|
|
|
|
|
lock = (sem_t *)malloc(sizeof(sem_t));
|
|
|
|
|
|
|
|
if (lock) {
|
|
|
|
status = sem_init(lock,0,1);
|
|
|
|
CHECK_STATUS("sem_init");
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
free((void *)lock);
|
|
|
|
lock = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dprintf(("PyThread_allocate_lock() -> %p\n", lock));
|
|
|
|
return (PyThread_type_lock)lock;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PyThread_free_lock(PyThread_type_lock lock)
|
|
|
|
{
|
|
|
|
sem_t *thelock = (sem_t *)lock;
|
|
|
|
int status, error = 0;
|
|
|
|
|
|
|
|
dprintf(("PyThread_free_lock(%p) called\n", lock));
|
|
|
|
|
|
|
|
if (!thelock)
|
|
|
|
return;
|
|
|
|
|
|
|
|
status = sem_destroy(thelock);
|
|
|
|
CHECK_STATUS("sem_destroy");
|
|
|
|
|
|
|
|
free((void *)thelock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* As of February 2002, Cygwin thread implementations mistakenly report error
|
|
|
|
* codes in the return value of the sem_ calls (like the pthread_ functions).
|
|
|
|
* Correct implementations return -1 and put the code in errno. This supports
|
|
|
|
* either.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
fix_status(int status)
|
|
|
|
{
|
|
|
|
return (status == -1) ? errno : status;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
PyThread_acquire_lock(PyThread_type_lock lock, int waitflag)
|
|
|
|
{
|
|
|
|
int success;
|
|
|
|
sem_t *thelock = (sem_t *)lock;
|
|
|
|
int status, error = 0;
|
|
|
|
|
|
|
|
dprintf(("PyThread_acquire_lock(%p, %d) called\n", lock, waitflag));
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (waitflag)
|
|
|
|
status = fix_status(sem_wait(thelock));
|
|
|
|
else
|
|
|
|
status = fix_status(sem_trywait(thelock));
|
|
|
|
} while (status == EINTR); /* Retry if interrupted by a signal */
|
|
|
|
|
|
|
|
if (waitflag) {
|
|
|
|
CHECK_STATUS("sem_wait");
|
|
|
|
} else if (status != EAGAIN) {
|
|
|
|
CHECK_STATUS("sem_trywait");
|
|
|
|
}
|
|
|
|
|
|
|
|
success = (status == 0) ? 1 : 0;
|
|
|
|
|
|
|
|
dprintf(("PyThread_acquire_lock(%p, %d) -> %d\n", lock, waitflag, success));
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PyThread_release_lock(PyThread_type_lock lock)
|
|
|
|
{
|
|
|
|
sem_t *thelock = (sem_t *)lock;
|
|
|
|
int status, error = 0;
|
|
|
|
|
|
|
|
dprintf(("PyThread_release_lock(%p) called\n", lock));
|
|
|
|
|
|
|
|
status = sem_post(thelock);
|
|
|
|
CHECK_STATUS("sem_post");
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* USE_SEMAPHORES */
|
|
|
|
|
1994-05-09 12:12:46 -03:00
|
|
|
/*
|
|
|
|
* Lock support.
|
|
|
|
*/
|
2000-07-22 15:47:25 -03:00
|
|
|
PyThread_type_lock
|
|
|
|
PyThread_allocate_lock(void)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
|
|
|
pthread_lock *lock;
|
1994-05-11 05:42:04 -03:00
|
|
|
int status, error = 0;
|
1994-05-09 12:12:46 -03:00
|
|
|
|
1998-12-21 15:32:43 -04:00
|
|
|
dprintf(("PyThread_allocate_lock called\n"));
|
1994-05-09 12:12:46 -03:00
|
|
|
if (!initialized)
|
1998-12-21 15:32:43 -04:00
|
|
|
PyThread_init_thread();
|
1994-05-09 12:12:46 -03:00
|
|
|
|
|
|
|
lock = (pthread_lock *) malloc(sizeof(pthread_lock));
|
1998-10-07 13:39:47 -03:00
|
|
|
memset((void *)lock, '\0', sizeof(pthread_lock));
|
1994-05-11 05:42:04 -03:00
|
|
|
if (lock) {
|
|
|
|
lock->locked = 0;
|
|
|
|
|
|
|
|
status = pthread_mutex_init(&lock->mut,
|
|
|
|
pthread_mutexattr_default);
|
|
|
|
CHECK_STATUS("pthread_mutex_init");
|
|
|
|
|
|
|
|
status = pthread_cond_init(&lock->lock_released,
|
|
|
|
pthread_condattr_default);
|
|
|
|
CHECK_STATUS("pthread_cond_init");
|
|
|
|
|
|
|
|
if (error) {
|
1994-05-09 12:12:46 -03:00
|
|
|
free((void *)lock);
|
|
|
|
lock = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_allocate_lock() -> %p\n", lock));
|
1998-12-21 15:32:43 -04:00
|
|
|
return (PyThread_type_lock) lock;
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
void
|
|
|
|
PyThread_free_lock(PyThread_type_lock lock)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1994-05-11 05:42:04 -03:00
|
|
|
pthread_lock *thelock = (pthread_lock *)lock;
|
|
|
|
int status, error = 0;
|
|
|
|
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_free_lock(%p) called\n", lock));
|
1994-05-11 05:42:04 -03:00
|
|
|
|
|
|
|
status = pthread_mutex_destroy( &thelock->mut );
|
|
|
|
CHECK_STATUS("pthread_mutex_destroy");
|
|
|
|
|
|
|
|
status = pthread_cond_destroy( &thelock->lock_released );
|
|
|
|
CHECK_STATUS("pthread_cond_destroy");
|
|
|
|
|
|
|
|
free((void *)thelock);
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
int
|
|
|
|
PyThread_acquire_lock(PyThread_type_lock lock, int waitflag)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
|
|
|
int success;
|
1994-05-11 05:42:04 -03:00
|
|
|
pthread_lock *thelock = (pthread_lock *)lock;
|
|
|
|
int status, error = 0;
|
1994-05-09 12:12:46 -03:00
|
|
|
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_acquire_lock(%p, %d) called\n", lock, waitflag));
|
1994-05-11 05:42:04 -03:00
|
|
|
|
|
|
|
status = pthread_mutex_lock( &thelock->mut );
|
|
|
|
CHECK_STATUS("pthread_mutex_lock[1]");
|
|
|
|
success = thelock->locked == 0;
|
|
|
|
if (success) thelock->locked = 1;
|
|
|
|
status = pthread_mutex_unlock( &thelock->mut );
|
|
|
|
CHECK_STATUS("pthread_mutex_unlock[1]");
|
|
|
|
|
|
|
|
if ( !success && waitflag ) {
|
|
|
|
/* continue trying until we get the lock */
|
|
|
|
|
|
|
|
/* mut must be locked by me -- part of the condition
|
|
|
|
* protocol */
|
|
|
|
status = pthread_mutex_lock( &thelock->mut );
|
|
|
|
CHECK_STATUS("pthread_mutex_lock[2]");
|
|
|
|
while ( thelock->locked ) {
|
|
|
|
status = pthread_cond_wait(&thelock->lock_released,
|
|
|
|
&thelock->mut);
|
|
|
|
CHECK_STATUS("pthread_cond_wait");
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
1994-05-11 05:42:04 -03:00
|
|
|
thelock->locked = 1;
|
|
|
|
status = pthread_mutex_unlock( &thelock->mut );
|
|
|
|
CHECK_STATUS("pthread_mutex_unlock[2]");
|
|
|
|
success = 1;
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
1994-05-11 05:42:04 -03:00
|
|
|
if (error) success = 0;
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_acquire_lock(%p, %d) -> %d\n", lock, waitflag, success));
|
1994-05-09 12:12:46 -03:00
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
void
|
|
|
|
PyThread_release_lock(PyThread_type_lock lock)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1994-05-11 05:42:04 -03:00
|
|
|
pthread_lock *thelock = (pthread_lock *)lock;
|
|
|
|
int status, error = 0;
|
|
|
|
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_release_lock(%p) called\n", lock));
|
1994-05-11 05:42:04 -03:00
|
|
|
|
|
|
|
status = pthread_mutex_lock( &thelock->mut );
|
|
|
|
CHECK_STATUS("pthread_mutex_lock[3]");
|
|
|
|
|
|
|
|
thelock->locked = 0;
|
|
|
|
|
|
|
|
status = pthread_mutex_unlock( &thelock->mut );
|
|
|
|
CHECK_STATUS("pthread_mutex_unlock[3]");
|
|
|
|
|
|
|
|
/* wake up someone (anyone, if any) waiting on the lock */
|
|
|
|
status = pthread_cond_signal( &thelock->lock_released );
|
|
|
|
CHECK_STATUS("pthread_cond_signal");
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
2002-03-17 05:53:51 -04:00
|
|
|
|
|
|
|
#endif /* USE_SEMAPHORES */
|