2000-02-17 20:38:33 +01:00
|
|
|
/* pthread.h: POSIX pthread interface
|
|
|
|
|
2013-01-21 05:38:31 +01:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
|
2014-07-16 12:21:18 +02:00
|
|
|
2007, 2011, 2012, 2013, 2014 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
Written by Marco Fuykschot <marco@ddi.nl>
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <signal.h>
|
2001-04-12 06:04:53 +02:00
|
|
|
#include <sched.h>
|
2012-02-13 02:46:46 +01:00
|
|
|
#include <time.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
#ifndef _PTHREAD_H
|
|
|
|
#define _PTHREAD_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-03-17 02:14:58 +01:00
|
|
|
/* Defines. (These are correctly defined here as per
|
|
|
|
http://www.opengroup.org/onlinepubs/7908799/xsh/pthread.h.html */
|
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
#define PTHREAD_CANCEL_ASYNCHRONOUS 1
|
|
|
|
/* defaults are enable, deferred */
|
|
|
|
#define PTHREAD_CANCEL_ENABLE 0
|
|
|
|
#define PTHREAD_CANCEL_DEFERRED 0
|
|
|
|
#define PTHREAD_CANCEL_DISABLE 1
|
2002-07-04 16:17:30 +02:00
|
|
|
#define PTHREAD_CANCELED ((void *)-1)
|
2001-11-15 12:10:38 +01:00
|
|
|
/* this should be a value that can never be a valid address */
|
2003-01-09 22:14:33 +01:00
|
|
|
#define PTHREAD_COND_INITIALIZER (pthread_cond_t)21
|
2001-03-21 03:17:58 +01:00
|
|
|
#define PTHREAD_CREATE_DETACHED 1
|
|
|
|
/* the default : joinable */
|
|
|
|
#define PTHREAD_CREATE_JOINABLE 0
|
2001-04-12 06:04:53 +02:00
|
|
|
#define PTHREAD_EXPLICIT_SCHED 1
|
|
|
|
#define PTHREAD_INHERIT_SCHED 0
|
2003-01-22 20:49:28 +01:00
|
|
|
#define PTHREAD_MUTEX_RECURSIVE 0
|
|
|
|
#define PTHREAD_MUTEX_ERRORCHECK 1
|
2003-03-18 20:39:21 +01:00
|
|
|
#define PTHREAD_MUTEX_NORMAL 2
|
2005-06-11 06:56:36 +02:00
|
|
|
#define PTHREAD_MUTEX_DEFAULT PTHREAD_MUTEX_NORMAL
|
2001-04-12 06:04:53 +02:00
|
|
|
/* this should be too low to ever be a valid address */
|
2004-03-04 22:04:14 +01:00
|
|
|
#define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP (pthread_mutex_t)18
|
|
|
|
#define PTHREAD_NORMAL_MUTEX_INITIALIZER_NP (pthread_mutex_t)19
|
|
|
|
#define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP (pthread_mutex_t)20
|
2014-07-14 11:42:15 +02:00
|
|
|
#define PTHREAD_MUTEX_INITIALIZER PTHREAD_NORMAL_MUTEX_INITIALIZER_NP
|
2001-04-12 06:04:53 +02:00
|
|
|
#define PTHREAD_ONCE_INIT { PTHREAD_MUTEX_INITIALIZER, 0 }
|
2006-07-12 11:55:47 +02:00
|
|
|
#if defined(_POSIX_THREAD_PRIO_INHERIT) && _POSIX_THREAD_PRIO_INHERIT >= 0
|
|
|
|
#define PTHREAD_PRIO_NONE 0
|
|
|
|
#define PTHREAD_PRIO_INHERIT 1
|
|
|
|
#define PTHREAD_PRIO_PROTECT 2
|
|
|
|
#endif
|
2001-04-12 06:04:53 +02:00
|
|
|
#define PTHREAD_PROCESS_SHARED 1
|
|
|
|
#define PTHREAD_PROCESS_PRIVATE 0
|
* cygwin.din: Add pthread_rwlock_destroy, pthread_rwlock_init,
pthread_rwlock_rdlock, pthread_rwlock_tryrdlock,
pthread_rwlock_wrlock, pthread_rwlock_trywrlock,
pthread_rwlock_unlock, pthread_rwlockattr_init,
pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared,
and pthread_rwlockattr_destroy.
* include/cygwin/version.h: Bump API minor number.
* include/pthread.h (PTHREAD_RWLOCK_INITIALIZER): Define a
reasonable value.
Add prototypes for pthread_rwlock_destroy, pthread_rwlock_init,
pthread_rwlock_rdlock, pthread_rwlock_tryrdlock,
pthread_rwlock_wrlock, pthread_rwlock_trywrlock,
pthread_rwlock_unlock, pthread_rwlockattr_init,
pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared,
and pthread_rwlockattr_destroy.
* thread.h (PTHREAD_ONCE_MAGIC): Remove superflous semicolon.
(PTHREAD_RWLOCK_MAGIC): New define.
(PTHREAD_RWLOCKATTR_MAGIC): Ditto.
(pthread_rwlockattr): New class.
(pthread_rwlock): Ditto.
(MTinterface::rwlocks): New member.
(MTinterface::MTinterface): Initialize rwlocks.
Add prototypes for __pthread_rwlock_destroy,
__pthread_rwlock_wrlock, __pthread_rwlock_trywrlock,
__pthread_rwlock_unlock, __pthread_rwlockattr_init,
__pthread_rwlockattr_getpshared, __pthread_rwlockattr_setpshared,
and __pthread_rwlockattr_destroy.
* thread.cc (MTinterface::Init): Initialize rwlock internal mutex.
(MTinterface::fixup_after_fork): Fixup rwlocks after fork.
(pthread_rwlockattr::isGoodObject): Implement.
(pthread_rwlockattr::pthread_rwlockattr): Ditto.
(pthread_rwlockattr::~pthread_rwlockattr): Ditto.
(pthread_rwlock::initMutex): Ditto.
(pthread_rwlock::pthread_rwlock): Ditto.
(pthread_rwlock::~pthread_rwlock): Ditto.
(pthread_rwlock::RdLock): Ditto.
(pthread_rwlock::TryRdLock): Ditto.
(pthread_rwlock::WrLock): Ditto.
(pthread_rwlock::TryWrLock): Ditto.
(pthread_rwlock::UnLock): Ditto.
(pthread_rwlock::addReader): Ditto.
(pthread_rwlock::removeReader): Ditto.
(pthread_rwlock::lookupReader): Ditto.
(pthread_rwlock::RdLockCleanup): Ditto.
(pthread_rwlock::WrLockCleanup): Ditto.
(pthread_rwlock::fixup_after_fork): Ditto.
(pthread_rwlock::isGoodObject): Ditto.
(pthread_rwlock::isGoodInitializer): Ditto.
(pthread_rwlock::isGoodInitializerOrObject): Ditto.
(pthread_rwlock::isGoodInitializerOrBadObject): Ditto.
(__pthread_rwlock_destroy): Ditto.
(pthread_rwlock::init): Ditto.
(__pthread_rwlock_rdlock): Ditto.
(__pthread_rwlock_tryrdlock): Ditto.
(__pthread_rwlock_wrlock): Ditto.
(__pthread_rwlock_trywrlock): Ditto.
2003-03-18 21:01:07 +01:00
|
|
|
#define PTHREAD_RWLOCK_INITIALIZER (pthread_rwlock_t)22
|
2001-04-12 06:04:53 +02:00
|
|
|
/* process is the default */
|
|
|
|
#define PTHREAD_SCOPE_PROCESS 0
|
|
|
|
#define PTHREAD_SCOPE_SYSTEM 1
|
POSIX barrier implementation, take 3
The attached patch should address all of the review comments.
Modifed change log:
Newlib:
* libc/include/sys/features.h (_POSIX_BARRIERS): Define for Cygwin.
* libc/include/sys/types.h (pthread_barrier_t)
(pthread_barrierattr_t): Do not define for Cygwin.
Cygwin:
* common.din (pthread_barrierattr_init)
(pthread_barrierattr_setpshared, pthread_barrierattr_getpshared)
(pthread_barrierattr_destroy, pthread_barrier_init)
(pthread_barrier_destroy, pthread_barrier_wait): Export.
* include/cygwin/types.h (pthread_barrierattr_t)
(pthread_barrier_t): Declare.
* include/pthread.h (PTHREAD_BARRIER_SERIAL_THREAD)
(pthread_barrierattr_init, pthread_barrierattr_setpshared)
(pthread_barrierattr_getpshared, pthread_barrierattr_destroy)
(pthread_barrier_init, pthread_barrier_destroy)
(pthread_barrier_wait): Declare.
* thread.h (PTHREAD_BARRIER_MAGIC)
(PTHREAD_BARRIERATTR_MAGIC): Define.
(class pthread_barrierattr, class pthread_barrier): Declare.
* thread.cc (delete_and_clear): New local helper function.
(class pthread_barrierattr, class pthread_barrier): Implement.
* miscfuncs.h (likely, unlikely): New macros.
--
VH
2016-02-12 22:25:59 +01:00
|
|
|
#define PTHREAD_BARRIER_SERIAL_THREAD (-1)
|
2001-04-12 06:04:53 +02:00
|
|
|
|
2013-02-26 11:32:36 +01:00
|
|
|
/* Register Fork Handlers */
|
|
|
|
int pthread_atfork (void (*)(void), void (*)(void), void (*)(void));
|
2001-04-12 06:04:53 +02:00
|
|
|
|
|
|
|
/* Attributes */
|
|
|
|
int pthread_attr_destroy (pthread_attr_t *);
|
|
|
|
int pthread_attr_getdetachstate (const pthread_attr_t *, int *);
|
2011-05-15 20:49:40 +02:00
|
|
|
int pthread_attr_getguardsize (const pthread_attr_t *, size_t *);
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_attr_getinheritsched (const pthread_attr_t *, int *);
|
|
|
|
int pthread_attr_getschedparam (const pthread_attr_t *, struct sched_param *);
|
|
|
|
int pthread_attr_getschedpolicy (const pthread_attr_t *, int *);
|
|
|
|
int pthread_attr_getscope (const pthread_attr_t *, int *);
|
2011-05-03 03:13:37 +02:00
|
|
|
int pthread_attr_getstack (const pthread_attr_t *, void **, size_t *);
|
2014-07-16 12:21:18 +02:00
|
|
|
int pthread_attr_getstackaddr (const pthread_attr_t *, void **)
|
2014-08-01 17:48:37 +02:00
|
|
|
__attribute__ ((__deprecated__));
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_attr_init (pthread_attr_t *);
|
|
|
|
int pthread_attr_setdetachstate (pthread_attr_t *, int);
|
2011-05-15 20:49:40 +02:00
|
|
|
int pthread_attr_setguardsize (pthread_attr_t *, size_t);
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_attr_setinheritsched (pthread_attr_t *, int);
|
|
|
|
int pthread_attr_setschedparam (pthread_attr_t *, const struct sched_param *);
|
|
|
|
int pthread_attr_setschedpolicy (pthread_attr_t *, int);
|
|
|
|
int pthread_attr_setscope (pthread_attr_t *, int);
|
|
|
|
|
|
|
|
#ifdef _POSIX_THREAD_ATTR_STACKADDR
|
2011-05-03 03:13:37 +02:00
|
|
|
int pthread_attr_setstack (pthread_attr_t *, void *, size_t);
|
2014-07-16 12:21:18 +02:00
|
|
|
int pthread_attr_setstackaddr (pthread_attr_t *, void *)
|
2014-08-01 17:48:37 +02:00
|
|
|
__attribute__ ((__deprecated__));
|
2001-04-12 06:04:53 +02:00
|
|
|
#endif
|
2001-03-21 03:17:58 +01:00
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
#ifdef _POSIX_THREAD_ATTR_STACKSIZE
|
|
|
|
int pthread_attr_getstacksize (const pthread_attr_t *, size_t *);
|
|
|
|
int pthread_attr_setstacksize (pthread_attr_t *, size_t);
|
|
|
|
#endif
|
2001-03-21 03:17:58 +01:00
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_cancel (pthread_t);
|
2001-11-05 07:09:15 +01:00
|
|
|
/* Macros for cleanup_push and pop;
|
2001-04-12 06:04:53 +02:00
|
|
|
* The function definitions are
|
2001-05-03 22:42:28 +02:00
|
|
|
void pthread_cleanup_push (void (*routine)(void*), void *arg);
|
|
|
|
void pthread_cleanup_pop (int execute);
|
2001-04-12 06:04:53 +02:00
|
|
|
*/
|
2001-09-25 13:45:26 +02:00
|
|
|
typedef void (*__cleanup_routine_type) (void *);
|
2002-12-12 04:09:38 +01:00
|
|
|
typedef struct _pthread_cleanup_handler
|
2002-06-10 03:10:45 +02:00
|
|
|
{
|
|
|
|
__cleanup_routine_type function;
|
|
|
|
void *arg;
|
|
|
|
struct _pthread_cleanup_handler *next;
|
|
|
|
} __pthread_cleanup_handler;
|
|
|
|
|
|
|
|
void _pthread_cleanup_push (__pthread_cleanup_handler *handler);
|
|
|
|
void _pthread_cleanup_pop (int execute);
|
|
|
|
|
|
|
|
#define pthread_cleanup_push(_fn, _arg) { __pthread_cleanup_handler __cleanup_handler = \
|
2005-05-02 05:50:11 +02:00
|
|
|
{ _fn, _arg, NULL }; \
|
|
|
|
_pthread_cleanup_push( &__cleanup_handler );
|
2002-06-10 03:10:45 +02:00
|
|
|
#define pthread_cleanup_pop(_execute) _pthread_cleanup_pop( _execute ); }
|
2000-05-09 00:38:07 +02:00
|
|
|
|
2001-03-17 02:14:58 +01:00
|
|
|
/* Condition variables */
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_cond_broadcast (pthread_cond_t *);
|
|
|
|
int pthread_cond_destroy (pthread_cond_t *);
|
|
|
|
int pthread_cond_init (pthread_cond_t *, const pthread_condattr_t *);
|
|
|
|
int pthread_cond_signal (pthread_cond_t *);
|
|
|
|
int pthread_cond_timedwait (pthread_cond_t *,
|
|
|
|
pthread_mutex_t *, const struct timespec *);
|
|
|
|
int pthread_cond_wait (pthread_cond_t *, pthread_mutex_t *);
|
|
|
|
int pthread_condattr_destroy (pthread_condattr_t *);
|
2011-07-21 11:39:22 +02:00
|
|
|
int pthread_condattr_getclock (const pthread_condattr_t *, clockid_t *);
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_condattr_getpshared (const pthread_condattr_t *, int *);
|
|
|
|
int pthread_condattr_init (pthread_condattr_t *);
|
2011-07-21 11:39:22 +02:00
|
|
|
int pthread_condattr_setclock (pthread_condattr_t *, clockid_t);
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_condattr_setpshared (pthread_condattr_t *, int);
|
|
|
|
|
POSIX barrier implementation, take 3
The attached patch should address all of the review comments.
Modifed change log:
Newlib:
* libc/include/sys/features.h (_POSIX_BARRIERS): Define for Cygwin.
* libc/include/sys/types.h (pthread_barrier_t)
(pthread_barrierattr_t): Do not define for Cygwin.
Cygwin:
* common.din (pthread_barrierattr_init)
(pthread_barrierattr_setpshared, pthread_barrierattr_getpshared)
(pthread_barrierattr_destroy, pthread_barrier_init)
(pthread_barrier_destroy, pthread_barrier_wait): Export.
* include/cygwin/types.h (pthread_barrierattr_t)
(pthread_barrier_t): Declare.
* include/pthread.h (PTHREAD_BARRIER_SERIAL_THREAD)
(pthread_barrierattr_init, pthread_barrierattr_setpshared)
(pthread_barrierattr_getpshared, pthread_barrierattr_destroy)
(pthread_barrier_init, pthread_barrier_destroy)
(pthread_barrier_wait): Declare.
* thread.h (PTHREAD_BARRIER_MAGIC)
(PTHREAD_BARRIERATTR_MAGIC): Define.
(class pthread_barrierattr, class pthread_barrier): Declare.
* thread.cc (delete_and_clear): New local helper function.
(class pthread_barrierattr, class pthread_barrier): Implement.
* miscfuncs.h (likely, unlikely): New macros.
--
VH
2016-02-12 22:25:59 +01:00
|
|
|
/* Barriers */
|
|
|
|
int pthread_barrierattr_init (pthread_barrierattr_t *);
|
|
|
|
int pthread_barrierattr_setpshared (pthread_barrierattr_t *, int);
|
|
|
|
int pthread_barrierattr_getpshared (const pthread_barrierattr_t *, int *);
|
|
|
|
int pthread_barrierattr_destroy (pthread_barrierattr_t *);
|
|
|
|
int pthread_barrier_init (pthread_barrier_t *,
|
|
|
|
const pthread_barrierattr_t *, unsigned);
|
|
|
|
int pthread_barrier_destroy (pthread_barrier_t *);
|
|
|
|
int pthread_barrier_wait (pthread_barrier_t *);
|
|
|
|
|
|
|
|
/* Threads */
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_create (pthread_t *, const pthread_attr_t *,
|
|
|
|
void *(*)(void *), void *);
|
|
|
|
int pthread_detach (pthread_t);
|
|
|
|
int pthread_equal (pthread_t, pthread_t);
|
2014-08-01 17:48:37 +02:00
|
|
|
void pthread_exit (void *) __attribute__ ((__noreturn__));
|
2011-05-17 19:08:10 +02:00
|
|
|
int pthread_getcpuclockid (pthread_t, clockid_t *);
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_getschedparam (pthread_t, int *, struct sched_param *);
|
|
|
|
void *pthread_getspecific (pthread_key_t);
|
|
|
|
int pthread_join (pthread_t, void **);
|
|
|
|
int pthread_key_create (pthread_key_t *, void (*)(void *));
|
|
|
|
int pthread_key_delete (pthread_key_t);
|
|
|
|
|
|
|
|
/* Mutex's */
|
|
|
|
int pthread_mutex_destroy (pthread_mutex_t *);
|
|
|
|
int pthread_mutex_getprioceiling (const pthread_mutex_t *, int *);
|
|
|
|
int pthread_mutex_init (pthread_mutex_t *, const pthread_mutexattr_t *);
|
|
|
|
int pthread_mutex_lock (pthread_mutex_t *);
|
|
|
|
int pthread_mutex_setprioceiling (pthread_mutex_t *, int, int *);
|
|
|
|
int pthread_mutex_trylock (pthread_mutex_t *);
|
|
|
|
int pthread_mutex_unlock (pthread_mutex_t *);
|
|
|
|
int pthread_mutexattr_destroy (pthread_mutexattr_t *);
|
|
|
|
int pthread_mutexattr_getprioceiling (const pthread_mutexattr_t *, int *);
|
|
|
|
int pthread_mutexattr_getprotocol (const pthread_mutexattr_t *, int *);
|
|
|
|
int pthread_mutexattr_getpshared (const pthread_mutexattr_t *, int *);
|
|
|
|
int pthread_mutexattr_gettype (const pthread_mutexattr_t *, int *);
|
|
|
|
int pthread_mutexattr_init (pthread_mutexattr_t *);
|
|
|
|
int pthread_mutexattr_setprioceiling (pthread_mutexattr_t *, int);
|
|
|
|
int pthread_mutexattr_setprotocol (pthread_mutexattr_t *, int);
|
|
|
|
int pthread_mutexattr_setpshared (pthread_mutexattr_t *, int);
|
|
|
|
int pthread_mutexattr_settype (pthread_mutexattr_t *, int);
|
|
|
|
|
2011-03-29 12:32:40 +02:00
|
|
|
/* Spinlocks */
|
|
|
|
int pthread_spin_destroy (pthread_spinlock_t *);
|
|
|
|
int pthread_spin_init (pthread_spinlock_t *, int);
|
|
|
|
int pthread_spin_lock (pthread_spinlock_t *);
|
|
|
|
int pthread_spin_trylock (pthread_spinlock_t *);
|
|
|
|
int pthread_spin_unlock (pthread_spinlock_t *);
|
|
|
|
|
* cygwin.din: Add pthread_rwlock_destroy, pthread_rwlock_init,
pthread_rwlock_rdlock, pthread_rwlock_tryrdlock,
pthread_rwlock_wrlock, pthread_rwlock_trywrlock,
pthread_rwlock_unlock, pthread_rwlockattr_init,
pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared,
and pthread_rwlockattr_destroy.
* include/cygwin/version.h: Bump API minor number.
* include/pthread.h (PTHREAD_RWLOCK_INITIALIZER): Define a
reasonable value.
Add prototypes for pthread_rwlock_destroy, pthread_rwlock_init,
pthread_rwlock_rdlock, pthread_rwlock_tryrdlock,
pthread_rwlock_wrlock, pthread_rwlock_trywrlock,
pthread_rwlock_unlock, pthread_rwlockattr_init,
pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared,
and pthread_rwlockattr_destroy.
* thread.h (PTHREAD_ONCE_MAGIC): Remove superflous semicolon.
(PTHREAD_RWLOCK_MAGIC): New define.
(PTHREAD_RWLOCKATTR_MAGIC): Ditto.
(pthread_rwlockattr): New class.
(pthread_rwlock): Ditto.
(MTinterface::rwlocks): New member.
(MTinterface::MTinterface): Initialize rwlocks.
Add prototypes for __pthread_rwlock_destroy,
__pthread_rwlock_wrlock, __pthread_rwlock_trywrlock,
__pthread_rwlock_unlock, __pthread_rwlockattr_init,
__pthread_rwlockattr_getpshared, __pthread_rwlockattr_setpshared,
and __pthread_rwlockattr_destroy.
* thread.cc (MTinterface::Init): Initialize rwlock internal mutex.
(MTinterface::fixup_after_fork): Fixup rwlocks after fork.
(pthread_rwlockattr::isGoodObject): Implement.
(pthread_rwlockattr::pthread_rwlockattr): Ditto.
(pthread_rwlockattr::~pthread_rwlockattr): Ditto.
(pthread_rwlock::initMutex): Ditto.
(pthread_rwlock::pthread_rwlock): Ditto.
(pthread_rwlock::~pthread_rwlock): Ditto.
(pthread_rwlock::RdLock): Ditto.
(pthread_rwlock::TryRdLock): Ditto.
(pthread_rwlock::WrLock): Ditto.
(pthread_rwlock::TryWrLock): Ditto.
(pthread_rwlock::UnLock): Ditto.
(pthread_rwlock::addReader): Ditto.
(pthread_rwlock::removeReader): Ditto.
(pthread_rwlock::lookupReader): Ditto.
(pthread_rwlock::RdLockCleanup): Ditto.
(pthread_rwlock::WrLockCleanup): Ditto.
(pthread_rwlock::fixup_after_fork): Ditto.
(pthread_rwlock::isGoodObject): Ditto.
(pthread_rwlock::isGoodInitializer): Ditto.
(pthread_rwlock::isGoodInitializerOrObject): Ditto.
(pthread_rwlock::isGoodInitializerOrBadObject): Ditto.
(__pthread_rwlock_destroy): Ditto.
(pthread_rwlock::init): Ditto.
(__pthread_rwlock_rdlock): Ditto.
(__pthread_rwlock_tryrdlock): Ditto.
(__pthread_rwlock_wrlock): Ditto.
(__pthread_rwlock_trywrlock): Ditto.
2003-03-18 21:01:07 +01:00
|
|
|
/* RW Locks */
|
|
|
|
int pthread_rwlock_destroy (pthread_rwlock_t *rwlock);
|
|
|
|
int pthread_rwlock_init (pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr);
|
|
|
|
int pthread_rwlock_rdlock (pthread_rwlock_t *rwlock);
|
|
|
|
int pthread_rwlock_tryrdlock (pthread_rwlock_t *rwlock);
|
|
|
|
int pthread_rwlock_wrlock (pthread_rwlock_t *rwlock);
|
|
|
|
int pthread_rwlock_trywrlock (pthread_rwlock_t *rwlock);
|
|
|
|
int pthread_rwlock_unlock (pthread_rwlock_t *rwlock);
|
|
|
|
int pthread_rwlockattr_init (pthread_rwlockattr_t *rwlockattr);
|
|
|
|
int pthread_rwlockattr_getpshared (const pthread_rwlockattr_t *attr,
|
2005-05-02 05:50:11 +02:00
|
|
|
int *pshared);
|
* cygwin.din: Add pthread_rwlock_destroy, pthread_rwlock_init,
pthread_rwlock_rdlock, pthread_rwlock_tryrdlock,
pthread_rwlock_wrlock, pthread_rwlock_trywrlock,
pthread_rwlock_unlock, pthread_rwlockattr_init,
pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared,
and pthread_rwlockattr_destroy.
* include/cygwin/version.h: Bump API minor number.
* include/pthread.h (PTHREAD_RWLOCK_INITIALIZER): Define a
reasonable value.
Add prototypes for pthread_rwlock_destroy, pthread_rwlock_init,
pthread_rwlock_rdlock, pthread_rwlock_tryrdlock,
pthread_rwlock_wrlock, pthread_rwlock_trywrlock,
pthread_rwlock_unlock, pthread_rwlockattr_init,
pthread_rwlockattr_getpshared, pthread_rwlockattr_setpshared,
and pthread_rwlockattr_destroy.
* thread.h (PTHREAD_ONCE_MAGIC): Remove superflous semicolon.
(PTHREAD_RWLOCK_MAGIC): New define.
(PTHREAD_RWLOCKATTR_MAGIC): Ditto.
(pthread_rwlockattr): New class.
(pthread_rwlock): Ditto.
(MTinterface::rwlocks): New member.
(MTinterface::MTinterface): Initialize rwlocks.
Add prototypes for __pthread_rwlock_destroy,
__pthread_rwlock_wrlock, __pthread_rwlock_trywrlock,
__pthread_rwlock_unlock, __pthread_rwlockattr_init,
__pthread_rwlockattr_getpshared, __pthread_rwlockattr_setpshared,
and __pthread_rwlockattr_destroy.
* thread.cc (MTinterface::Init): Initialize rwlock internal mutex.
(MTinterface::fixup_after_fork): Fixup rwlocks after fork.
(pthread_rwlockattr::isGoodObject): Implement.
(pthread_rwlockattr::pthread_rwlockattr): Ditto.
(pthread_rwlockattr::~pthread_rwlockattr): Ditto.
(pthread_rwlock::initMutex): Ditto.
(pthread_rwlock::pthread_rwlock): Ditto.
(pthread_rwlock::~pthread_rwlock): Ditto.
(pthread_rwlock::RdLock): Ditto.
(pthread_rwlock::TryRdLock): Ditto.
(pthread_rwlock::WrLock): Ditto.
(pthread_rwlock::TryWrLock): Ditto.
(pthread_rwlock::UnLock): Ditto.
(pthread_rwlock::addReader): Ditto.
(pthread_rwlock::removeReader): Ditto.
(pthread_rwlock::lookupReader): Ditto.
(pthread_rwlock::RdLockCleanup): Ditto.
(pthread_rwlock::WrLockCleanup): Ditto.
(pthread_rwlock::fixup_after_fork): Ditto.
(pthread_rwlock::isGoodObject): Ditto.
(pthread_rwlock::isGoodInitializer): Ditto.
(pthread_rwlock::isGoodInitializerOrObject): Ditto.
(pthread_rwlock::isGoodInitializerOrBadObject): Ditto.
(__pthread_rwlock_destroy): Ditto.
(pthread_rwlock::init): Ditto.
(__pthread_rwlock_rdlock): Ditto.
(__pthread_rwlock_tryrdlock): Ditto.
(__pthread_rwlock_wrlock): Ditto.
(__pthread_rwlock_trywrlock): Ditto.
2003-03-18 21:01:07 +01:00
|
|
|
int pthread_rwlockattr_setpshared (pthread_rwlockattr_t *attr, int pshared);
|
|
|
|
int pthread_rwlockattr_destroy (pthread_rwlockattr_t *rwlockattr);
|
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_once (pthread_once_t *, void (*)(void));
|
|
|
|
|
|
|
|
/* Concurrency levels - X/Open interface */
|
|
|
|
int pthread_getconcurrency (void);
|
|
|
|
int pthread_setconcurrency (int);
|
|
|
|
|
|
|
|
|
|
|
|
pthread_t pthread_self (void);
|
|
|
|
int pthread_setcancelstate (int, int *);
|
|
|
|
int pthread_setcanceltype (int, int *);
|
|
|
|
int pthread_setschedparam (pthread_t, int, const struct sched_param *);
|
2011-04-15 11:22:14 +02:00
|
|
|
int pthread_setschedprio (pthread_t, int);
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_setspecific (pthread_key_t, const void *);
|
|
|
|
void pthread_testcancel (void);
|
|
|
|
|
|
|
|
/* Non posix calls */
|
|
|
|
|
2011-05-03 03:13:37 +02:00
|
|
|
int pthread_getattr_np (pthread_t, pthread_attr_t *);
|
2012-01-06 08:12:18 +01:00
|
|
|
int pthread_sigqueue (pthread_t *, int, const union sigval);
|
2001-04-12 06:04:53 +02:00
|
|
|
int pthread_suspend (pthread_t);
|
|
|
|
int pthread_continue (pthread_t);
|
2011-02-10 11:51:14 +01:00
|
|
|
int pthread_yield (void);
|
2001-04-12 06:04:53 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
#endif /* _PTHREAD_H */
|