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>
|
1996-06-11 15:32:18 -03:00
|
|
|
#include <pthread.h>
|
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
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
int
|
|
|
|
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;
|
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
|
|
|
|
|
|
|
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)
|
|
|
|
(pthread_attr_t*)NULL,
|
2000-07-22 15:47:25 -03:00
|
|
|
(void* (*)(void *))func,
|
1997-05-13 14:51:13 -03:00
|
|
|
(void *)arg
|
|
|
|
#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
|
|
|
|
}
|
1999-03-15 16:27:53 -04:00
|
|
|
return success != 0 ? 0 : 1;
|
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 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Semaphore support.
|
|
|
|
*/
|
1997-01-17 17:06:41 -04:00
|
|
|
|
|
|
|
struct semaphore {
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
pthread_cond_t cond;
|
|
|
|
int value;
|
|
|
|
};
|
1994-05-11 05:42:04 -03:00
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
PyThread_type_sema
|
|
|
|
PyThread_allocate_sema(int value)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1997-01-17 17:06:41 -04:00
|
|
|
struct semaphore *sema;
|
|
|
|
int status, error = 0;
|
|
|
|
|
1998-12-21 15:32:43 -04:00
|
|
|
dprintf(("PyThread_allocate_sema 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
|
|
|
|
1997-01-17 17:06:41 -04:00
|
|
|
sema = (struct semaphore *) malloc(sizeof(struct semaphore));
|
|
|
|
if (sema != NULL) {
|
|
|
|
sema->value = value;
|
|
|
|
status = pthread_mutex_init(&sema->mutex,
|
|
|
|
pthread_mutexattr_default);
|
|
|
|
CHECK_STATUS("pthread_mutex_init");
|
|
|
|
status = pthread_cond_init(&sema->cond,
|
|
|
|
pthread_condattr_default);
|
|
|
|
CHECK_STATUS("pthread_cond_init");
|
|
|
|
if (error) {
|
|
|
|
free((void *) sema);
|
|
|
|
sema = NULL;
|
|
|
|
}
|
|
|
|
}
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_allocate_sema() -> %p\n", sema));
|
1998-12-21 15:32:43 -04:00
|
|
|
return (PyThread_type_sema) sema;
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
void
|
|
|
|
PyThread_free_sema(PyThread_type_sema sema)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1997-01-17 17:06:41 -04:00
|
|
|
int status, error = 0;
|
|
|
|
struct semaphore *thesema = (struct semaphore *) sema;
|
|
|
|
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_free_sema(%p) called\n", sema));
|
1997-01-17 17:06:41 -04:00
|
|
|
status = pthread_cond_destroy(&thesema->cond);
|
|
|
|
CHECK_STATUS("pthread_cond_destroy");
|
|
|
|
status = pthread_mutex_destroy(&thesema->mutex);
|
|
|
|
CHECK_STATUS("pthread_mutex_destroy");
|
|
|
|
free((void *) thesema);
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
int
|
|
|
|
PyThread_down_sema(PyThread_type_sema sema, int waitflag)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1997-01-17 17:06:41 -04:00
|
|
|
int status, error = 0, success;
|
|
|
|
struct semaphore *thesema = (struct semaphore *) sema;
|
|
|
|
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_down_sema(%p, %d) called\n", sema, waitflag));
|
1997-01-17 17:06:41 -04:00
|
|
|
status = pthread_mutex_lock(&thesema->mutex);
|
|
|
|
CHECK_STATUS("pthread_mutex_lock");
|
|
|
|
if (waitflag) {
|
|
|
|
while (!error && thesema->value <= 0) {
|
|
|
|
status = pthread_cond_wait(&thesema->cond,
|
|
|
|
&thesema->mutex);
|
|
|
|
CHECK_STATUS("pthread_cond_wait");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (error)
|
|
|
|
success = 0;
|
|
|
|
else if (thesema->value > 0) {
|
|
|
|
thesema->value--;
|
|
|
|
success = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
success = 0;
|
|
|
|
status = pthread_mutex_unlock(&thesema->mutex);
|
|
|
|
CHECK_STATUS("pthread_mutex_unlock");
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_down_sema(%p) return\n", sema));
|
1997-01-17 17:06:41 -04:00
|
|
|
return success;
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|
|
|
|
|
2000-07-22 15:47:25 -03:00
|
|
|
void
|
|
|
|
PyThread_up_sema(PyThread_type_sema sema)
|
1994-05-09 12:12:46 -03:00
|
|
|
{
|
1997-01-17 17:06:41 -04:00
|
|
|
int status, error = 0;
|
|
|
|
struct semaphore *thesema = (struct semaphore *) sema;
|
|
|
|
|
2000-06-30 12:01:00 -03:00
|
|
|
dprintf(("PyThread_up_sema(%p)\n", sema));
|
1997-01-17 17:06:41 -04:00
|
|
|
status = pthread_mutex_lock(&thesema->mutex);
|
|
|
|
CHECK_STATUS("pthread_mutex_lock");
|
|
|
|
thesema->value++;
|
|
|
|
status = pthread_cond_signal(&thesema->cond);
|
|
|
|
CHECK_STATUS("pthread_cond_signal");
|
|
|
|
status = pthread_mutex_unlock(&thesema->mutex);
|
|
|
|
CHECK_STATUS("pthread_mutex_unlock");
|
1994-05-09 12:12:46 -03:00
|
|
|
}
|