2001-12-02 06:23:26 +01:00
|
|
|
/* thread.cc: Locking and threading module functions
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2007-02-22 13:34:55 +01:00
|
|
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
2008-04-01 15:22:47 +02:00
|
|
|
2006, 2007, 2008 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
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. */
|
|
|
|
|
2001-09-12 06:47:47 +02:00
|
|
|
/* Implementation overview and caveats:
|
2001-04-12 06:04:53 +02:00
|
|
|
|
2001-09-12 06:47:47 +02:00
|
|
|
Win32 puts some contraints on what can and cannot be implemented. Where
|
|
|
|
possible we work around those contrainsts. Where we cannot work around
|
|
|
|
the constraints we either pretend to be conformant, or return an error
|
|
|
|
code.
|
2001-04-12 06:04:53 +02:00
|
|
|
|
2001-09-12 06:47:47 +02:00
|
|
|
Some caveats: PROCESS_SHARED objects while they pretend to be process
|
|
|
|
shared, may not actually work. Some test cases are needed to determine
|
|
|
|
win32's behaviour. My suspicion is that the win32 handle needs to be
|
|
|
|
opened with different flags for proper operation.
|
2001-04-12 06:04:53 +02:00
|
|
|
|
2001-09-12 06:47:47 +02:00
|
|
|
R.Collins, April 2001. */
|
2001-04-12 06:04:53 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "winsup.h"
|
2008-04-07 18:15:45 +02:00
|
|
|
#include "miscfuncs.h"
|
2007-03-29 18:37:36 +02:00
|
|
|
#include "path.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <stdlib.h>
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "pinfo.h"
|
2003-11-28 21:55:59 +01:00
|
|
|
#include "sigproc.h"
|
2000-09-08 04:56:55 +02:00
|
|
|
#include "perprocess.h"
|
2003-11-28 21:55:59 +01:00
|
|
|
#include "cygtls.h"
|
2007-03-29 18:37:36 +02:00
|
|
|
#include "fhandler.h"
|
|
|
|
#include "dtable.h"
|
|
|
|
#include "cygheap.h"
|
2004-03-26 21:02:01 +01:00
|
|
|
|
|
|
|
extern "C" void __fp_lock_all ();
|
|
|
|
extern "C" void __fp_unlock_all ();
|
2005-07-03 05:25:19 +02:00
|
|
|
static inline verifyable_object_state
|
|
|
|
verifyable_object_isvalid (void const * objectptr, long magic,
|
|
|
|
void *static_ptr1 = NULL,
|
|
|
|
void *static_ptr2 = NULL,
|
|
|
|
void *static_ptr3 = NULL);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
extern int threadsafe;
|
|
|
|
|
2003-12-23 17:26:31 +01:00
|
|
|
#undef __getreent
|
2003-06-16 05:24:13 +02:00
|
|
|
extern "C" struct _reent *
|
|
|
|
__getreent ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-12-23 17:26:31 +01:00
|
|
|
return &_my_tls.local_clib;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2004-03-26 21:02:01 +01:00
|
|
|
extern "C" void
|
|
|
|
__cygwin_lock_init (_LOCK_T *lock)
|
|
|
|
{
|
|
|
|
*lock = _LOCK_T_INITIALIZER;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
__cygwin_lock_init_recursive (_LOCK_T *lock)
|
|
|
|
{
|
|
|
|
*lock = _LOCK_T_RECURSIVE_INITIALIZER;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
__cygwin_lock_fini (_LOCK_T *lock)
|
|
|
|
{
|
|
|
|
pthread_mutex_destroy ((pthread_mutex_t*) lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
__cygwin_lock_lock (_LOCK_T *lock)
|
|
|
|
{
|
2004-06-27 21:16:48 +02:00
|
|
|
if (MT_INTERFACE->threadcount <= 1)
|
|
|
|
paranoid_printf ("threadcount %d. not locking", MT_INTERFACE->threadcount);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
paranoid_printf ("threadcount %d. locking", MT_INTERFACE->threadcount);
|
|
|
|
pthread_mutex_lock ((pthread_mutex_t*) lock);
|
|
|
|
}
|
2004-03-26 21:02:01 +01:00
|
|
|
}
|
|
|
|
|
2004-05-17 18:06:02 +02:00
|
|
|
extern "C" int
|
2004-03-26 21:02:01 +01:00
|
|
|
__cygwin_lock_trylock (_LOCK_T *lock)
|
|
|
|
{
|
2004-05-17 18:06:02 +02:00
|
|
|
return pthread_mutex_trylock ((pthread_mutex_t*) lock);
|
2004-03-26 21:02:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
__cygwin_lock_unlock (_LOCK_T *lock)
|
|
|
|
{
|
2004-06-27 21:16:48 +02:00
|
|
|
if (MT_INTERFACE->threadcount <= 1)
|
|
|
|
paranoid_printf ("threadcount %d. not unlocking", MT_INTERFACE->threadcount);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pthread_mutex_unlock ((pthread_mutex_t*) lock);
|
|
|
|
paranoid_printf ("threadcount %d. unlocked", MT_INTERFACE->threadcount);
|
|
|
|
}
|
2004-03-26 21:02:01 +01:00
|
|
|
}
|
|
|
|
|
2005-07-03 05:25:19 +02:00
|
|
|
static inline verifyable_object_state
|
2006-05-27 21:00:36 +02:00
|
|
|
verifyable_object_isvalid (void const *objectptr, long magic, void *static_ptr1,
|
2005-07-03 05:25:19 +02:00
|
|
|
void *static_ptr2, void *static_ptr3)
|
|
|
|
{
|
|
|
|
myfault efault;
|
2006-05-27 21:00:36 +02:00
|
|
|
/* Check for NULL pointer specifically since it is a cheap test and avoids the
|
|
|
|
overhead of setting up the fault handler. */
|
|
|
|
if (!objectptr || efault.faulted ())
|
2005-07-03 05:25:19 +02:00
|
|
|
return INVALID_OBJECT;
|
2005-07-05 04:02:23 +02:00
|
|
|
|
2006-05-27 21:00:36 +02:00
|
|
|
verifyable_object **object = (verifyable_object **) objectptr;
|
|
|
|
|
2005-07-03 05:25:19 +02:00
|
|
|
if ((static_ptr1 && *object == static_ptr1) ||
|
|
|
|
(static_ptr2 && *object == static_ptr2) ||
|
|
|
|
(static_ptr3 && *object == static_ptr3))
|
|
|
|
return VALID_STATIC_OBJECT;
|
|
|
|
if ((*object)->magic != magic)
|
|
|
|
return INVALID_OBJECT;
|
|
|
|
return VALID_OBJECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static members */
|
|
|
|
inline bool
|
|
|
|
pthread_attr::is_good_object (pthread_attr_t const *attr)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (attr, PTHREAD_ATTR_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_condattr::is_good_object (pthread_condattr_t const *attr)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (attr, PTHREAD_CONDATTR_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_rwlockattr::is_good_object (pthread_rwlockattr_t const *attr)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (attr, PTHREAD_RWLOCKATTR_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_key::is_good_object (pthread_key_t const *key)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (key, PTHREAD_KEY_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_mutex::is_good_object (pthread_mutex_t const *mutex)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (mutex, PTHREAD_MUTEX_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_mutex::is_good_initializer (pthread_mutex_t const *mutex)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (mutex, PTHREAD_MUTEX_MAGIC,
|
|
|
|
PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP,
|
|
|
|
PTHREAD_NORMAL_MUTEX_INITIALIZER_NP,
|
|
|
|
PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP) != VALID_STATIC_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_mutex::is_good_initializer_or_object (pthread_mutex_t const *mutex)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (mutex, PTHREAD_MUTEX_MAGIC,
|
|
|
|
PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP,
|
|
|
|
PTHREAD_NORMAL_MUTEX_INITIALIZER_NP,
|
|
|
|
PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP) == INVALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_mutex::can_be_unlocked (pthread_mutex_t const *mutex)
|
|
|
|
{
|
|
|
|
pthread_t self = pthread::self ();
|
|
|
|
|
|
|
|
if (!is_good_object (mutex))
|
|
|
|
return false;
|
2005-09-06 21:22:54 +02:00
|
|
|
/* Check if the mutex is owned by the current thread and can be unlocked.
|
|
|
|
* Also check for the ANONYMOUS owner to cover NORMAL mutexes as well. */
|
|
|
|
return ((*mutex)->recursion_counter == 1
|
|
|
|
&& ((*mutex)->owner == MUTEX_OWNER_ANONYMOUS
|
|
|
|
|| pthread::equal ((*mutex)->owner, self)));
|
2005-07-03 05:25:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_mutexattr::is_good_object (pthread_mutexattr_t const * attr)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (attr, PTHREAD_MUTEXATTR_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool __attribute__ ((used))
|
|
|
|
pthread::is_good_object (pthread_t const *thread)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (thread, PTHREAD_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Thread synchronisation */
|
|
|
|
inline bool
|
|
|
|
pthread_cond::is_good_object (pthread_cond_t const *cond)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (cond, PTHREAD_COND_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_cond::is_good_initializer (pthread_cond_t const *cond)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (cond, PTHREAD_COND_MAGIC, PTHREAD_COND_INITIALIZER) != VALID_STATIC_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_cond::is_good_initializer_or_object (pthread_cond_t const *cond)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (cond, PTHREAD_COND_MAGIC, PTHREAD_COND_INITIALIZER) == INVALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* RW locks */
|
|
|
|
inline bool
|
|
|
|
pthread_rwlock::is_good_object (pthread_rwlock_t const *rwlock)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (rwlock, PTHREAD_RWLOCK_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_rwlock::is_good_initializer (pthread_rwlock_t const *rwlock)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (rwlock, PTHREAD_RWLOCK_MAGIC, PTHREAD_RWLOCK_INITIALIZER) != VALID_STATIC_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
pthread_rwlock::is_good_initializer_or_object (pthread_rwlock_t const *rwlock)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (rwlock, PTHREAD_RWLOCK_MAGIC, PTHREAD_RWLOCK_INITIALIZER) == INVALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool
|
|
|
|
semaphore::is_good_object (sem_t const * sem)
|
|
|
|
{
|
|
|
|
if (verifyable_object_isvalid (sem, SEM_MAGIC) != VALID_OBJECT)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
void
|
2003-05-15 21:42:51 +02:00
|
|
|
MTinterface::Init ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_mutex::init_mutex ();
|
|
|
|
pthread_cond::init_mutex ();
|
|
|
|
pthread_rwlock::init_mutex ();
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-09-17 11:12:36 +02:00
|
|
|
void
|
2005-07-05 05:16:46 +02:00
|
|
|
MTinterface::fixup_before_fork ()
|
2002-09-17 11:12:36 +02:00
|
|
|
{
|
|
|
|
pthread_key::fixup_before_fork ();
|
|
|
|
}
|
|
|
|
|
2001-09-11 10:15:39 +02:00
|
|
|
/* This function is called from a single threaded process */
|
|
|
|
void
|
2005-07-05 05:16:46 +02:00
|
|
|
MTinterface::fixup_after_fork ()
|
2001-09-11 10:15:39 +02:00
|
|
|
{
|
2002-09-17 11:12:36 +02:00
|
|
|
pthread_key::fixup_after_fork ();
|
2003-03-04 21:16:49 +01:00
|
|
|
|
2003-11-28 21:55:59 +01:00
|
|
|
threadcount = 0;
|
2004-04-10 02:53:25 +02:00
|
|
|
pthread::init_mainthread ();
|
2003-03-04 21:16:49 +01:00
|
|
|
|
2003-06-24 22:14:01 +02:00
|
|
|
pthread::fixup_after_fork ();
|
2003-03-23 11:52:02 +01:00
|
|
|
pthread_mutex::fixup_after_fork ();
|
|
|
|
pthread_cond::fixup_after_fork ();
|
|
|
|
pthread_rwlock::fixup_after_fork ();
|
|
|
|
semaphore::fixup_after_fork ();
|
2001-09-11 10:15:39 +02:00
|
|
|
}
|
|
|
|
|
2002-06-10 03:10:45 +02:00
|
|
|
/* pthread calls */
|
|
|
|
|
|
|
|
/* static methods */
|
2002-09-16 12:53:29 +02:00
|
|
|
void
|
2004-04-10 02:53:25 +02:00
|
|
|
pthread::init_mainthread ()
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread *thread = get_tls_self_pointer ();
|
2002-11-24 14:54:14 +01:00
|
|
|
if (!thread)
|
|
|
|
{
|
2004-04-10 02:53:25 +02:00
|
|
|
thread = new pthread ();
|
|
|
|
if (!thread)
|
2004-05-28 21:50:07 +02:00
|
|
|
api_fatal ("failed to create mainthread object");
|
2002-11-24 14:54:14 +01:00
|
|
|
}
|
|
|
|
|
2004-04-10 02:53:25 +02:00
|
|
|
set_tls_self_pointer (thread);
|
2003-11-28 21:55:59 +01:00
|
|
|
thread->thread_id = GetCurrentThreadId ();
|
2004-06-07 06:26:32 +02:00
|
|
|
if (!DuplicateHandle (hMainProc, GetCurrentThread (), hMainProc,
|
|
|
|
&thread->win32_obj_id, 0, FALSE, DUPLICATE_SAME_ACCESS))
|
2003-12-15 15:38:12 +01:00
|
|
|
api_fatal ("failed to create mainthread handle");
|
|
|
|
if (!thread->create_cancel_event ())
|
|
|
|
api_fatal ("couldn't create cancel event for main thread");
|
2004-01-24 00:05:33 +01:00
|
|
|
VerifyHandle (thread->win32_obj_id);
|
2003-11-28 21:55:59 +01:00
|
|
|
thread->postcreate ();
|
2002-09-16 12:53:29 +02:00
|
|
|
}
|
2002-06-10 03:10:45 +02:00
|
|
|
|
|
|
|
pthread *
|
|
|
|
pthread::self ()
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread *thread = get_tls_self_pointer ();
|
2004-04-10 02:53:25 +02:00
|
|
|
if (!thread)
|
|
|
|
{
|
|
|
|
thread = pthread_null::get_null_pthread ();
|
|
|
|
set_tls_self_pointer (thread);
|
|
|
|
}
|
|
|
|
return thread;
|
2002-09-16 12:53:29 +02:00
|
|
|
}
|
|
|
|
|
2002-11-24 14:54:14 +01:00
|
|
|
pthread *
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread::get_tls_self_pointer ()
|
2002-11-24 14:54:14 +01:00
|
|
|
{
|
2003-12-23 17:26:31 +01:00
|
|
|
return _my_tls.tid;
|
2002-06-10 03:10:45 +02:00
|
|
|
}
|
|
|
|
|
2004-04-10 02:53:25 +02:00
|
|
|
void
|
|
|
|
pthread::set_tls_self_pointer (pthread *thread)
|
|
|
|
{
|
|
|
|
thread->cygtls = &_my_tls;
|
|
|
|
_my_tls.tid = thread;
|
|
|
|
}
|
|
|
|
|
2003-06-24 22:14:01 +02:00
|
|
|
List<pthread> pthread::threads;
|
|
|
|
|
2002-06-10 03:10:45 +02:00
|
|
|
/* member methods */
|
2001-04-12 06:04:53 +02:00
|
|
|
pthread::pthread ():verifyable_object (PTHREAD_MAGIC), win32_obj_id (0),
|
2003-10-31 21:42:56 +01:00
|
|
|
valid (false), suspended (false),
|
2002-09-22 23:39:03 +02:00
|
|
|
cancelstate (0), canceltype (0), cancel_event (0),
|
2003-06-24 22:14:01 +02:00
|
|
|
joiner (NULL), next (NULL), cleanup_stack (NULL)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-06-24 22:14:01 +02:00
|
|
|
if (this != pthread_null::get_null_pthread ())
|
|
|
|
threads.insert (this);
|
2008-02-15 18:53:11 +01:00
|
|
|
parent_tls = &_my_tls;
|
2001-03-21 03:17:58 +01:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
pthread::~pthread ()
|
|
|
|
{
|
|
|
|
if (win32_obj_id)
|
|
|
|
CloseHandle (win32_obj_id);
|
2002-07-04 16:17:30 +02:00
|
|
|
if (cancel_event)
|
|
|
|
CloseHandle (cancel_event);
|
2003-06-24 22:14:01 +02:00
|
|
|
|
|
|
|
if (this != pthread_null::get_null_pthread ())
|
|
|
|
threads.remove (this);
|
2001-03-21 03:17:58 +01:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-12-12 05:15:32 +01:00
|
|
|
bool
|
|
|
|
pthread::create_cancel_event ()
|
|
|
|
{
|
|
|
|
cancel_event = ::CreateEvent (&sec_none_nih, TRUE, FALSE, NULL);
|
|
|
|
if (!cancel_event)
|
|
|
|
{
|
2003-12-15 15:38:12 +01:00
|
|
|
system_printf ("couldn't create cancel event, %E");
|
2003-12-12 05:15:32 +01:00
|
|
|
/* we need the event for correct behaviour */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
void
|
2002-09-16 12:53:29 +02:00
|
|
|
pthread::precreate (pthread_attr *newattr)
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2002-06-23 09:36:21 +02:00
|
|
|
pthread_mutex *verifyable_mutex_obj = &mutex;
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* already running ? */
|
2001-03-21 03:17:58 +01:00
|
|
|
if (win32_obj_id)
|
|
|
|
return;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
if (newattr)
|
|
|
|
{
|
|
|
|
attr.joinable = newattr->joinable;
|
2001-04-12 06:04:53 +02:00
|
|
|
attr.contentionscope = newattr->contentionscope;
|
|
|
|
attr.inheritsched = newattr->inheritsched;
|
2001-03-21 03:17:58 +01:00
|
|
|
attr.stacksize = newattr->stacksize;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutex::is_good_object (&verifyable_mutex_obj))
|
2002-06-10 04:40:13 +02:00
|
|
|
{
|
|
|
|
thread_printf ("New thread object access mutex is not valid. this %p",
|
|
|
|
this);
|
|
|
|
magic = 0;
|
|
|
|
return;
|
|
|
|
}
|
2003-03-18 20:39:21 +01:00
|
|
|
/* Change the mutex type to NORMAL to speed up mutex operations */
|
|
|
|
mutex.type = PTHREAD_MUTEX_NORMAL;
|
2003-12-12 05:15:32 +01:00
|
|
|
if (!create_cancel_event ())
|
|
|
|
magic = 0;
|
2002-09-16 12:53:29 +02:00
|
|
|
}
|
|
|
|
|
2005-08-05 18:14:41 +02:00
|
|
|
bool
|
2002-09-16 12:53:29 +02:00
|
|
|
pthread::create (void *(*func) (void *), pthread_attr *newattr,
|
|
|
|
void *threadarg)
|
2002-09-16 18:09:54 +02:00
|
|
|
{
|
2005-08-05 18:14:41 +02:00
|
|
|
bool retval;
|
|
|
|
|
2002-09-16 12:53:29 +02:00
|
|
|
precreate (newattr);
|
|
|
|
if (!magic)
|
2005-08-05 18:14:41 +02:00
|
|
|
return false;
|
2003-11-25 23:58:32 +01:00
|
|
|
|
|
|
|
function = func;
|
|
|
|
arg = threadarg;
|
2002-07-04 16:17:30 +02:00
|
|
|
|
2004-04-13 04:59:19 +02:00
|
|
|
mutex.lock ();
|
2001-11-28 01:06:35 +01:00
|
|
|
win32_obj_id = ::CreateThread (&sec_none_nih, attr.stacksize,
|
2004-04-13 04:59:19 +02:00
|
|
|
thread_init_wrapper, this, 0, &thread_id);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
if (!win32_obj_id)
|
2002-06-27 16:19:30 +02:00
|
|
|
{
|
2003-11-28 21:55:59 +01:00
|
|
|
thread_printf ("CreateThread failed: this %p, %E", this);
|
2002-06-27 16:19:30 +02:00
|
|
|
magic = 0;
|
|
|
|
}
|
2003-11-25 23:55:31 +01:00
|
|
|
else
|
|
|
|
{
|
2004-04-13 05:25:50 +02:00
|
|
|
postcreate ();
|
2005-06-11 06:56:36 +02:00
|
|
|
while (!cygtls)
|
|
|
|
low_priority_sleep (0);
|
2003-11-25 23:55:31 +01:00
|
|
|
}
|
2005-08-05 18:14:41 +02:00
|
|
|
retval = magic;
|
2004-04-13 04:59:19 +02:00
|
|
|
mutex.unlock ();
|
2005-08-05 18:14:41 +02:00
|
|
|
return retval;
|
2002-09-16 12:53:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pthread::postcreate ()
|
|
|
|
{
|
2003-10-31 21:42:56 +01:00
|
|
|
valid = true;
|
2003-06-24 22:14:01 +02:00
|
|
|
|
|
|
|
InterlockedIncrement (&MT_INTERFACE->threadcount);
|
|
|
|
/* FIXME: set the priority appropriately for system contention scope */
|
|
|
|
if (attr.inheritsched == PTHREAD_EXPLICIT_SCHED)
|
|
|
|
{
|
|
|
|
/* FIXME: set the scheduling settings for the new thread */
|
|
|
|
/* sched_thread_setparam (win32_obj_id, attr.schedparam); */
|
|
|
|
}
|
2001-03-21 03:17:58 +01:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-07-04 16:17:30 +02:00
|
|
|
void
|
|
|
|
pthread::exit (void *value_ptr)
|
|
|
|
{
|
|
|
|
class pthread *thread = this;
|
|
|
|
|
|
|
|
// run cleanup handlers
|
|
|
|
pop_all_cleanup_handlers ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_key::run_all_destructors ();
|
2002-07-04 16:17:30 +02:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.lock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
// cleanup if thread is in detached state and not joined
|
2003-04-17 21:57:01 +02:00
|
|
|
if (equal (joiner, thread))
|
2002-07-04 16:17:30 +02:00
|
|
|
delete this;
|
|
|
|
else
|
2002-09-16 18:09:54 +02:00
|
|
|
{
|
2003-10-31 21:42:56 +01:00
|
|
|
valid = false;
|
2002-07-04 16:17:30 +02:00
|
|
|
return_ptr = value_ptr;
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.unlock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
}
|
|
|
|
|
2004-09-07 06:05:14 +02:00
|
|
|
if (_my_tls.local_clib.__sdidinit < 0)
|
|
|
|
_my_tls.local_clib.__sdidinit = 0;
|
2003-11-11 20:10:47 +01:00
|
|
|
(_reclaim_reent) (_REENT);
|
|
|
|
|
2003-12-06 19:08:38 +01:00
|
|
|
|
2002-07-04 16:17:30 +02:00
|
|
|
if (InterlockedDecrement (&MT_INTERFACE->threadcount) == 0)
|
|
|
|
::exit (0);
|
|
|
|
else
|
2003-12-06 19:08:38 +01:00
|
|
|
{
|
2004-01-14 16:45:37 +01:00
|
|
|
_my_tls.remove (INFINITE);
|
2003-12-06 19:08:38 +01:00
|
|
|
ExitThread (0);
|
|
|
|
}
|
2002-07-04 16:17:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-07-05 05:16:46 +02:00
|
|
|
pthread::cancel ()
|
2002-07-04 16:17:30 +02:00
|
|
|
{
|
|
|
|
class pthread *thread = this;
|
|
|
|
class pthread *self = pthread::self ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.lock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
|
2003-10-31 21:42:56 +01:00
|
|
|
if (!valid)
|
2003-06-24 22:14:01 +02:00
|
|
|
{
|
|
|
|
mutex.unlock ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-07-04 16:17:30 +02:00
|
|
|
if (canceltype == PTHREAD_CANCEL_DEFERRED ||
|
|
|
|
cancelstate == PTHREAD_CANCEL_DISABLE)
|
|
|
|
{
|
|
|
|
// cancel deferred
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.unlock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
SetEvent (cancel_event);
|
|
|
|
return 0;
|
|
|
|
}
|
2003-04-17 21:57:01 +02:00
|
|
|
else if (equal (thread, self))
|
2002-07-04 16:17:30 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.unlock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
cancel_self ();
|
|
|
|
return 0; // Never reached
|
|
|
|
}
|
|
|
|
|
|
|
|
// cancel asynchronous
|
|
|
|
SuspendThread (win32_obj_id);
|
|
|
|
if (WaitForSingleObject (win32_obj_id, 0) == WAIT_TIMEOUT)
|
|
|
|
{
|
|
|
|
CONTEXT context;
|
|
|
|
context.ContextFlags = CONTEXT_CONTROL;
|
|
|
|
GetThreadContext (win32_obj_id, &context);
|
|
|
|
context.Eip = (DWORD) pthread::static_cancel_self;
|
|
|
|
SetThreadContext (win32_obj_id, &context);
|
|
|
|
}
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.unlock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
ResumeThread (win32_obj_id);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
/*
|
|
|
|
TODO: insert pthread_testcancel into the required functions
|
|
|
|
the required function list is: *indicates done, X indicates not present in cygwin.
|
|
|
|
aio_suspend ()
|
|
|
|
*close ()
|
|
|
|
*creat ()
|
|
|
|
fcntl ()
|
|
|
|
fsync ()
|
|
|
|
getmsg ()
|
|
|
|
getpmsg ()
|
|
|
|
lockf ()
|
|
|
|
mq_receive ()
|
|
|
|
mq_send ()
|
|
|
|
msgrcv ()
|
|
|
|
msgsnd ()
|
|
|
|
msync ()
|
|
|
|
nanosleep ()
|
|
|
|
open ()
|
2003-01-14 20:55:42 +01:00
|
|
|
*pause ()
|
2002-07-04 16:17:30 +02:00
|
|
|
poll ()
|
|
|
|
pread ()
|
2003-03-18 20:49:38 +01:00
|
|
|
*pthread_cond_timedwait ()
|
|
|
|
*pthread_cond_wait ()
|
2002-07-04 16:17:30 +02:00
|
|
|
*pthread_join ()
|
2003-01-14 21:19:27 +01:00
|
|
|
*pthread_testcancel ()
|
2002-07-04 16:17:30 +02:00
|
|
|
putmsg ()
|
|
|
|
putpmsg ()
|
|
|
|
pwrite ()
|
|
|
|
read ()
|
|
|
|
readv ()
|
|
|
|
select ()
|
2003-01-09 21:57:54 +01:00
|
|
|
*sem_wait ()
|
2003-01-14 20:55:42 +01:00
|
|
|
*sigpause ()
|
|
|
|
*sigsuspend ()
|
2002-07-04 16:17:30 +02:00
|
|
|
sigtimedwait ()
|
|
|
|
sigwait ()
|
|
|
|
sigwaitinfo ()
|
|
|
|
*sleep ()
|
2003-01-14 21:19:27 +01:00
|
|
|
*system ()
|
2002-07-04 16:17:30 +02:00
|
|
|
tcdrain ()
|
|
|
|
*usleep ()
|
2003-01-14 21:13:09 +01:00
|
|
|
*wait ()
|
|
|
|
*wait3()
|
2002-07-04 16:17:30 +02:00
|
|
|
waitid ()
|
2003-01-14 21:13:09 +01:00
|
|
|
*waitpid ()
|
2002-07-04 16:17:30 +02:00
|
|
|
write ()
|
|
|
|
writev ()
|
|
|
|
|
|
|
|
the optional list is:
|
|
|
|
catclose ()
|
|
|
|
catgets ()
|
|
|
|
catopen ()
|
|
|
|
closedir ()
|
|
|
|
closelog ()
|
|
|
|
ctermid ()
|
|
|
|
dbm_close ()
|
|
|
|
dbm_delete ()
|
|
|
|
dbm_fetch ()
|
|
|
|
dbm_nextkey ()
|
|
|
|
dbm_open ()
|
|
|
|
dbm_store ()
|
|
|
|
dlclose ()
|
|
|
|
dlopen ()
|
|
|
|
endgrent ()
|
|
|
|
endpwent ()
|
|
|
|
endutxent ()
|
|
|
|
fclose ()
|
|
|
|
fcntl ()
|
|
|
|
fflush ()
|
|
|
|
fgetc ()
|
|
|
|
fgetpos ()
|
|
|
|
fgets ()
|
|
|
|
fgetwc ()
|
|
|
|
fgetws ()
|
|
|
|
fopen ()
|
|
|
|
fprintf ()
|
|
|
|
fputc ()
|
|
|
|
fputs ()
|
|
|
|
fputwc ()
|
|
|
|
fputws ()
|
|
|
|
fread ()
|
|
|
|
freopen ()
|
|
|
|
fscanf ()
|
|
|
|
fseek ()
|
|
|
|
fseeko ()
|
|
|
|
fsetpos ()
|
|
|
|
ftell ()
|
|
|
|
ftello ()
|
|
|
|
ftw ()
|
|
|
|
fwprintf ()
|
|
|
|
fwrite ()
|
|
|
|
fwscanf ()
|
|
|
|
getc ()
|
|
|
|
getc_unlocked ()
|
|
|
|
getchar ()
|
|
|
|
getchar_unlocked ()
|
|
|
|
getcwd ()
|
|
|
|
getdate ()
|
|
|
|
getgrent ()
|
|
|
|
getgrgid ()
|
|
|
|
getgrgid_r ()
|
|
|
|
getgrnam ()
|
|
|
|
getgrnam_r ()
|
|
|
|
getlogin ()
|
|
|
|
getlogin_r ()
|
|
|
|
getpwent ()
|
|
|
|
*getpwnam ()
|
|
|
|
*getpwnam_r ()
|
|
|
|
*getpwuid ()
|
|
|
|
*getpwuid_r ()
|
|
|
|
gets ()
|
|
|
|
getutxent ()
|
|
|
|
getutxid ()
|
|
|
|
getutxline ()
|
|
|
|
getw ()
|
|
|
|
getwc ()
|
|
|
|
getwchar ()
|
|
|
|
getwd ()
|
|
|
|
glob ()
|
|
|
|
iconv_close ()
|
|
|
|
iconv_open ()
|
|
|
|
ioctl ()
|
|
|
|
lseek ()
|
|
|
|
mkstemp ()
|
|
|
|
nftw ()
|
|
|
|
opendir ()
|
|
|
|
openlog ()
|
|
|
|
pclose ()
|
|
|
|
perror ()
|
|
|
|
popen ()
|
|
|
|
printf ()
|
|
|
|
putc ()
|
|
|
|
putc_unlocked ()
|
|
|
|
putchar ()
|
|
|
|
putchar_unlocked ()
|
|
|
|
puts ()
|
|
|
|
pututxline ()
|
|
|
|
putw ()
|
|
|
|
putwc ()
|
|
|
|
putwchar ()
|
|
|
|
readdir ()
|
|
|
|
readdir_r ()
|
|
|
|
remove ()
|
|
|
|
rename ()
|
|
|
|
rewind ()
|
|
|
|
rewinddir ()
|
|
|
|
scanf ()
|
|
|
|
seekdir ()
|
|
|
|
semop ()
|
|
|
|
setgrent ()
|
|
|
|
setpwent ()
|
|
|
|
setutxent ()
|
|
|
|
strerror ()
|
|
|
|
syslog ()
|
|
|
|
tmpfile ()
|
|
|
|
tmpnam ()
|
|
|
|
ttyname ()
|
|
|
|
ttyname_r ()
|
|
|
|
ungetc ()
|
|
|
|
ungetwc ()
|
|
|
|
unlink ()
|
|
|
|
vfprintf ()
|
|
|
|
vfwprintf ()
|
|
|
|
vprintf ()
|
|
|
|
vwprintf ()
|
|
|
|
wprintf ()
|
|
|
|
wscanf ()
|
|
|
|
|
|
|
|
Note, that for fcntl (), for any value of the cmd argument.
|
|
|
|
|
|
|
|
And we must not introduce cancellation points anywhere else that's part of the posix or
|
|
|
|
opengroup specs.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-07-05 05:16:46 +02:00
|
|
|
pthread::testcancel ()
|
2002-07-04 16:17:30 +02:00
|
|
|
{
|
|
|
|
if (cancelstate == PTHREAD_CANCEL_DISABLE)
|
|
|
|
return;
|
|
|
|
|
2003-03-27 20:57:06 +01:00
|
|
|
if (WaitForSingleObject (cancel_event, 0) == WAIT_OBJECT_0)
|
2002-07-04 16:17:30 +02:00
|
|
|
cancel_self ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-07-05 05:16:46 +02:00
|
|
|
pthread::static_cancel_self ()
|
2002-07-04 16:17:30 +02:00
|
|
|
{
|
2002-09-17 11:12:36 +02:00
|
|
|
pthread::self ()->cancel_self ();
|
2002-07-04 16:17:30 +02:00
|
|
|
}
|
|
|
|
|
2003-01-14 21:31:47 +01:00
|
|
|
DWORD
|
2007-02-20 16:48:04 +01:00
|
|
|
cancelable_wait (HANDLE object, DWORD timeout,
|
|
|
|
const cw_cancel_action cancel_action,
|
2005-06-09 07:11:51 +02:00
|
|
|
const enum cw_sig_wait sig_wait)
|
2003-01-09 21:57:54 +01:00
|
|
|
{
|
|
|
|
DWORD res;
|
2004-02-24 12:33:15 +01:00
|
|
|
DWORD num = 0;
|
|
|
|
HANDLE wait_objects[3];
|
2005-06-09 07:11:51 +02:00
|
|
|
pthread_t thread = pthread::self ();
|
2003-01-09 21:57:54 +01:00
|
|
|
|
2004-02-24 12:33:15 +01:00
|
|
|
/* Do not change the wait order.
|
|
|
|
The object must have higher priority than the cancel event,
|
|
|
|
because WaitForMultipleObjects will return the smallest index
|
|
|
|
if both objects are signaled. */
|
|
|
|
wait_objects[num++] = object;
|
2004-05-07 05:27:37 +02:00
|
|
|
DWORD cancel_n;
|
2005-06-11 06:56:36 +02:00
|
|
|
if (cancel_action == cw_no_cancel || !pthread::is_good_object (&thread) ||
|
2004-05-07 05:27:37 +02:00
|
|
|
thread->cancelstate == PTHREAD_CANCEL_DISABLE)
|
|
|
|
cancel_n = (DWORD) -1;
|
|
|
|
else
|
|
|
|
{
|
2005-06-09 07:14:02 +02:00
|
|
|
cancel_n = WAIT_OBJECT_0 + num++;
|
2004-05-07 05:27:37 +02:00
|
|
|
wait_objects[cancel_n] = thread->cancel_event;
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD sig_n;
|
2005-06-09 07:11:51 +02:00
|
|
|
if (sig_wait == cw_sig_nosig || &_my_tls != _main_tls)
|
2004-05-07 05:27:37 +02:00
|
|
|
sig_n = (DWORD) -1;
|
|
|
|
else
|
|
|
|
{
|
2005-06-09 07:14:02 +02:00
|
|
|
sig_n = WAIT_OBJECT_0 + num++;
|
2004-05-07 05:27:37 +02:00
|
|
|
wait_objects[sig_n] = signal_arrived;
|
|
|
|
}
|
2004-02-24 12:33:15 +01:00
|
|
|
|
2005-06-09 07:11:51 +02:00
|
|
|
while (1)
|
2004-02-24 12:33:15 +01:00
|
|
|
{
|
2005-06-09 07:11:51 +02:00
|
|
|
res = WaitForMultipleObjects (num, wait_objects, FALSE, timeout);
|
|
|
|
if (res == cancel_n)
|
|
|
|
{
|
2005-06-11 06:56:36 +02:00
|
|
|
if (cancel_action == cw_cancel_self)
|
2005-06-09 07:11:51 +02:00
|
|
|
pthread::static_cancel_self ();
|
|
|
|
res = WAIT_CANCELED;
|
|
|
|
}
|
|
|
|
else if (res != sig_n)
|
|
|
|
/* all set */;
|
|
|
|
else if (sig_wait == cw_sig_eintr)
|
|
|
|
res = WAIT_SIGNALED;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_my_tls.call_signal_handler ();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
2004-02-24 12:33:15 +01:00
|
|
|
}
|
2003-01-09 21:57:54 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2002-07-04 16:17:30 +02:00
|
|
|
int
|
|
|
|
pthread::setcancelstate (int state, int *oldstate)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.lock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
|
|
|
|
if (state != PTHREAD_CANCEL_ENABLE && state != PTHREAD_CANCEL_DISABLE)
|
|
|
|
result = EINVAL;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (oldstate)
|
2002-09-16 18:09:54 +02:00
|
|
|
*oldstate = cancelstate;
|
2002-07-04 16:17:30 +02:00
|
|
|
cancelstate = state;
|
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.unlock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread::setcanceltype (int type, int *oldtype)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.lock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
|
|
|
|
if (type != PTHREAD_CANCEL_DEFERRED && type != PTHREAD_CANCEL_ASYNCHRONOUS)
|
|
|
|
result = EINVAL;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (oldtype)
|
2002-09-16 18:09:54 +02:00
|
|
|
*oldtype = canceltype;
|
2002-07-04 16:17:30 +02:00
|
|
|
canceltype = type;
|
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.unlock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2002-06-10 03:10:45 +02:00
|
|
|
void
|
|
|
|
pthread::push_cleanup_handler (__pthread_cleanup_handler *handler)
|
|
|
|
{
|
|
|
|
if (this != self ())
|
|
|
|
// TODO: do it?
|
2002-09-16 18:09:54 +02:00
|
|
|
api_fatal ("Attempt to push a cleanup handler across threads");
|
2002-06-23 09:36:21 +02:00
|
|
|
handler->next = cleanup_stack;
|
2003-10-24 21:34:47 +02:00
|
|
|
cleanup_stack = handler;
|
2002-06-10 03:10:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pthread::pop_cleanup_handler (int const execute)
|
|
|
|
{
|
|
|
|
if (this != self ())
|
|
|
|
// TODO: send a signal or something to the thread ?
|
|
|
|
api_fatal ("Attempt to execute a cleanup handler across threads");
|
2002-09-16 18:09:54 +02:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.lock ();
|
2002-07-04 16:17:30 +02:00
|
|
|
|
2002-06-23 09:36:21 +02:00
|
|
|
if (cleanup_stack != NULL)
|
2002-06-10 03:10:45 +02:00
|
|
|
{
|
2002-06-23 09:36:21 +02:00
|
|
|
__pthread_cleanup_handler *handler = cleanup_stack;
|
2002-06-10 03:10:45 +02:00
|
|
|
|
|
|
|
if (execute)
|
2002-09-16 18:09:54 +02:00
|
|
|
(*handler->function) (handler->arg);
|
2002-06-23 09:36:21 +02:00
|
|
|
cleanup_stack = handler->next;
|
2002-06-10 03:10:45 +02:00
|
|
|
}
|
2002-07-04 16:17:30 +02:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex.unlock ();
|
2002-06-10 03:10:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pthread::pop_all_cleanup_handlers ()
|
|
|
|
{
|
2002-06-23 09:36:21 +02:00
|
|
|
while (cleanup_stack != NULL)
|
2002-06-10 03:10:45 +02:00
|
|
|
pop_cleanup_handler (1);
|
|
|
|
}
|
|
|
|
|
2002-09-16 12:53:29 +02:00
|
|
|
void
|
2002-09-17 11:12:36 +02:00
|
|
|
pthread::cancel_self ()
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
exit (PTHREAD_CANCELED);
|
|
|
|
}
|
|
|
|
|
|
|
|
DWORD
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread::get_thread_id ()
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
return thread_id;
|
|
|
|
}
|
|
|
|
|
2003-06-24 22:14:01 +02:00
|
|
|
void
|
|
|
|
pthread::_fixup_after_fork ()
|
|
|
|
{
|
|
|
|
/* set thread to not running if it is not the forking thread */
|
|
|
|
if (this != pthread::self ())
|
|
|
|
{
|
|
|
|
magic = 0;
|
2003-10-31 21:42:56 +01:00
|
|
|
valid = false;
|
2003-06-24 22:14:01 +02:00
|
|
|
win32_obj_id = NULL;
|
|
|
|
cancel_event = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-31 21:42:56 +01:00
|
|
|
void
|
|
|
|
pthread::suspend_except_self ()
|
|
|
|
{
|
|
|
|
if (valid && this != pthread::self ())
|
2003-11-25 23:57:22 +01:00
|
|
|
SuspendThread (win32_obj_id);
|
2003-10-31 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pthread::resume ()
|
|
|
|
{
|
|
|
|
if (valid)
|
2003-11-25 23:57:22 +01:00
|
|
|
ResumeThread (win32_obj_id);
|
2003-10-31 21:42:56 +01:00
|
|
|
}
|
|
|
|
|
2002-09-21 00:34:05 +02:00
|
|
|
/* instance members */
|
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
pthread_attr::pthread_attr ():verifyable_object (PTHREAD_ATTR_MAGIC),
|
2001-04-12 06:04:53 +02:00
|
|
|
joinable (PTHREAD_CREATE_JOINABLE), contentionscope (PTHREAD_SCOPE_PROCESS),
|
|
|
|
inheritsched (PTHREAD_INHERIT_SCHED), stacksize (0)
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2001-04-12 06:04:53 +02:00
|
|
|
schedparam.sched_priority = 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
pthread_attr::~pthread_attr ()
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-03-21 03:17:58 +01:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
pthread_condattr::pthread_condattr ():verifyable_object
|
|
|
|
(PTHREAD_CONDATTR_MAGIC), shared (PTHREAD_PROCESS_PRIVATE)
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
pthread_condattr::~pthread_condattr ()
|
|
|
|
{
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-23 11:52:02 +01:00
|
|
|
List<pthread_cond> pthread_cond::conds;
|
|
|
|
|
2003-01-09 21:40:44 +01:00
|
|
|
/* This is used for cond creation protection within a single process only */
|
2003-10-24 21:34:47 +02:00
|
|
|
fast_mutex NO_COPY pthread_cond::cond_initialization_lock;
|
2003-01-09 21:40:44 +01:00
|
|
|
|
|
|
|
/* We can only be called once.
|
|
|
|
TODO: (no rush) use a non copied memory section to
|
|
|
|
hold an initialization flag. */
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_cond::init_mutex ()
|
2003-01-09 21:40:44 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!cond_initialization_lock.init ())
|
2003-01-09 21:40:44 +01:00
|
|
|
api_fatal ("Could not create win32 Mutex for pthread cond static initializer support.");
|
|
|
|
}
|
|
|
|
|
2003-03-18 20:49:38 +01:00
|
|
|
pthread_cond::pthread_cond (pthread_condattr *attr) :
|
|
|
|
verifyable_object (PTHREAD_COND_MAGIC),
|
2003-03-27 20:52:20 +01:00
|
|
|
shared (0), waiting (0), pending (0), sem_wait (NULL),
|
|
|
|
mtx_cond(NULL), next (NULL)
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2003-03-18 20:49:38 +01:00
|
|
|
pthread_mutex *verifyable_mutex_obj;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 20:49:38 +01:00
|
|
|
if (attr)
|
|
|
|
if (attr->shared != PTHREAD_PROCESS_PRIVATE)
|
|
|
|
{
|
2003-07-26 06:53:59 +02:00
|
|
|
magic = 0;
|
|
|
|
return;
|
2003-03-18 20:49:38 +01:00
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
verifyable_mutex_obj = &mtx_in;
|
|
|
|
if (!pthread_mutex::is_good_object (&verifyable_mutex_obj))
|
2001-05-07 00:23:43 +02:00
|
|
|
{
|
2003-03-18 20:49:38 +01:00
|
|
|
thread_printf ("Internal cond mutex is not valid. this %p", this);
|
2001-06-26 16:57:33 +02:00
|
|
|
magic = 0;
|
2003-03-18 20:49:38 +01:00
|
|
|
return;
|
|
|
|
}
|
2003-03-27 20:52:20 +01:00
|
|
|
/*
|
|
|
|
* Change the mutex type to NORMAL.
|
|
|
|
* This mutex MUST be of type normal
|
|
|
|
*/
|
|
|
|
mtx_in.type = PTHREAD_MUTEX_NORMAL;
|
2003-03-18 20:49:38 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
verifyable_mutex_obj = &mtx_out;
|
|
|
|
if (!pthread_mutex::is_good_object (&verifyable_mutex_obj))
|
2003-03-18 20:49:38 +01:00
|
|
|
{
|
|
|
|
thread_printf ("Internal cond mutex is not valid. this %p", this);
|
|
|
|
magic = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Change the mutex type to NORMAL to speed up mutex operations */
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_out.type = PTHREAD_MUTEX_NORMAL;
|
2003-03-18 20:49:38 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
sem_wait = ::CreateSemaphore (&sec_none_nih, 0, LONG_MAX, NULL);
|
|
|
|
if (!sem_wait)
|
2003-03-18 20:49:38 +01:00
|
|
|
{
|
|
|
|
debug_printf ("CreateSemaphore failed. %E");
|
|
|
|
magic = 0;
|
|
|
|
return;
|
2001-05-07 00:23:43 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
conds.insert (this);
|
2001-03-21 03:17:58 +01:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
pthread_cond::~pthread_cond ()
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (sem_wait)
|
|
|
|
CloseHandle (sem_wait);
|
2003-03-18 20:49:38 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
conds.remove (this);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_cond::unblock (const bool all)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-18 20:49:38 +01:00
|
|
|
unsigned long releaseable;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-07-26 06:53:59 +02:00
|
|
|
/*
|
2003-03-18 20:49:38 +01:00
|
|
|
* Block outgoing threads (and avoid simultanous unblocks)
|
2001-12-26 13:46:26 +01:00
|
|
|
*/
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_out.lock ();
|
2003-03-18 20:49:38 +01:00
|
|
|
|
|
|
|
releaseable = waiting - pending;
|
|
|
|
if (releaseable)
|
2001-09-29 11:01:01 +02:00
|
|
|
{
|
2003-03-18 20:49:38 +01:00
|
|
|
unsigned long released;
|
|
|
|
|
|
|
|
if (!pending)
|
2003-07-26 06:53:59 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Block incoming threads until all waiting threads are released.
|
|
|
|
*/
|
|
|
|
mtx_in.lock ();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate releaseable again because threads can enter until
|
|
|
|
* the semaphore has been taken, but they can not leave, therefore pending
|
|
|
|
* is unchanged and releaseable can only get higher
|
|
|
|
*/
|
|
|
|
releaseable = waiting - pending;
|
|
|
|
}
|
2003-03-18 20:49:38 +01:00
|
|
|
|
|
|
|
released = all ? releaseable : 1;
|
|
|
|
pending += released;
|
|
|
|
/*
|
|
|
|
* Signal threads
|
|
|
|
*/
|
2003-03-27 20:52:20 +01:00
|
|
|
::ReleaseSemaphore (sem_wait, released, NULL);
|
2001-09-29 11:01:01 +02:00
|
|
|
}
|
2003-03-18 20:49:38 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* And let the threads release.
|
|
|
|
*/
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_out.unlock ();
|
2001-03-21 03:17:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_cond::wait (pthread_mutex_t mutex, DWORD dwMilliseconds)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-04-21 16:23:47 +02:00
|
|
|
DWORD rv;
|
2003-01-09 21:50:23 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_in.lock ();
|
2003-03-27 20:57:06 +01:00
|
|
|
if (InterlockedIncrement ((long *)&waiting) == 1)
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_cond = mutex;
|
|
|
|
else if (mtx_cond != mutex)
|
2003-03-18 20:49:38 +01:00
|
|
|
{
|
|
|
|
InterlockedDecrement ((long *)&waiting);
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_in.unlock ();
|
2003-03-18 20:49:38 +01:00
|
|
|
return EINVAL;
|
|
|
|
}
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_in.unlock ();
|
2003-03-18 20:49:38 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Release the mutex and wait on semaphore
|
2003-01-09 21:50:23 +01:00
|
|
|
*/
|
2003-03-18 20:49:38 +01:00
|
|
|
++mutex->condwaits;
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex->unlock ();
|
2001-09-12 06:47:47 +02:00
|
|
|
|
2005-06-11 06:56:36 +02:00
|
|
|
rv = cancelable_wait (sem_wait, dwMilliseconds, cw_no_cancel_self, cw_sig_eintr);
|
2003-03-18 20:49:38 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_out.lock ();
|
2003-07-26 06:53:59 +02:00
|
|
|
|
2003-03-18 20:49:38 +01:00
|
|
|
if (rv != WAIT_OBJECT_0)
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2003-03-18 20:49:38 +01:00
|
|
|
/*
|
|
|
|
* It might happen that a signal is sent while the thread got canceled
|
|
|
|
* or timed out. Try to take one.
|
|
|
|
* If the thread gets one than a signal|broadcast is in progress.
|
2003-07-26 06:53:59 +02:00
|
|
|
*/
|
2003-03-27 20:57:06 +01:00
|
|
|
if (WaitForSingleObject (sem_wait, 0) == WAIT_OBJECT_0)
|
2003-07-26 06:53:59 +02:00
|
|
|
/*
|
|
|
|
* thread got cancelled ot timed out while a signalling is in progress.
|
|
|
|
* Set wait result back to signaled
|
|
|
|
*/
|
|
|
|
rv = WAIT_OBJECT_0;
|
2001-03-21 03:17:58 +01:00
|
|
|
}
|
2003-03-18 20:49:38 +01:00
|
|
|
|
|
|
|
InterlockedDecrement ((long *)&waiting);
|
|
|
|
|
2003-03-27 20:57:06 +01:00
|
|
|
if (rv == WAIT_OBJECT_0 && --pending == 0)
|
2003-03-18 20:49:38 +01:00
|
|
|
/*
|
|
|
|
* All signaled threads are released,
|
|
|
|
* new threads can enter Wait
|
|
|
|
*/
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_in.unlock ();
|
2003-03-18 20:49:38 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_out.unlock ();
|
2003-07-26 06:53:59 +02:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex->lock ();
|
2003-03-18 20:49:38 +01:00
|
|
|
--mutex->condwaits;
|
|
|
|
|
|
|
|
if (rv == WAIT_CANCELED)
|
|
|
|
pthread::static_cancel_self ();
|
2004-02-24 12:33:15 +01:00
|
|
|
else if (rv == WAIT_SIGNALED)
|
|
|
|
/* SUSv3 states: If a signal is delivered to a thread waiting for a
|
|
|
|
condition variable, upon return from the signal handler the thread
|
|
|
|
resumes waiting for the condition variable as if it was not
|
|
|
|
interrupted, or it shall return zero due to spurious wakeup.
|
|
|
|
We opt for the latter choice here. */
|
|
|
|
return 0;
|
2003-03-18 20:49:38 +01:00
|
|
|
else if (rv == WAIT_TIMEOUT)
|
|
|
|
return ETIMEDOUT;
|
|
|
|
|
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-09-11 10:15:39 +02:00
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_cond::_fixup_after_fork ()
|
2001-09-11 10:15:39 +02:00
|
|
|
{
|
2003-03-18 20:49:38 +01:00
|
|
|
waiting = pending = 0;
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_cond = NULL;
|
2003-03-18 20:49:38 +01:00
|
|
|
|
|
|
|
/* Unlock eventually locked mutexes */
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx_in.unlock ();
|
|
|
|
mtx_out.unlock ();
|
2003-03-18 20:49:38 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
sem_wait = ::CreateSemaphore (&sec_none_nih, 0, LONG_MAX, NULL);
|
|
|
|
if (!sem_wait)
|
|
|
|
api_fatal ("pthread_cond::_fixup_after_fork () failed to recreate win32 semaphore");
|
2001-09-11 10:15:39 +02:00
|
|
|
}
|
|
|
|
|
* 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
|
|
|
pthread_rwlockattr::pthread_rwlockattr ():verifyable_object
|
|
|
|
(PTHREAD_RWLOCKATTR_MAGIC), shared (PTHREAD_PROCESS_PRIVATE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_rwlockattr::~pthread_rwlockattr ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-03-23 11:52:02 +01:00
|
|
|
List<pthread_rwlock> pthread_rwlock::rwlocks;
|
|
|
|
|
* 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
|
|
|
/* This is used for rwlock creation protection within a single process only */
|
2003-10-24 21:34:47 +02:00
|
|
|
fast_mutex NO_COPY pthread_rwlock::rwlock_initialization_lock;
|
* 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
|
|
|
|
|
|
|
/* We can only be called once.
|
|
|
|
TODO: (no rush) use a non copied memory section to
|
|
|
|
hold an initialization flag. */
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::init_mutex ()
|
* 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
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!rwlock_initialization_lock.init ())
|
* 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
|
|
|
api_fatal ("Could not create win32 Mutex for pthread rwlock static initializer support.");
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_rwlock::pthread_rwlock (pthread_rwlockattr *attr) :
|
|
|
|
verifyable_object (PTHREAD_RWLOCK_MAGIC),
|
2003-03-27 20:52:20 +01:00
|
|
|
shared (0), waiting_readers (0), waiting_writers (0), writer (NULL),
|
2003-10-24 21:34:47 +02:00
|
|
|
readers (NULL), readers_mx (), mtx (NULL), cond_readers (NULL), cond_writers (NULL),
|
* 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
|
|
|
next (NULL)
|
|
|
|
{
|
|
|
|
pthread_mutex *verifyable_mutex_obj = &mtx;
|
|
|
|
pthread_cond *verifyable_cond_obj;
|
|
|
|
|
2003-10-24 21:34:47 +02:00
|
|
|
if (!readers_mx.init ())
|
|
|
|
{
|
|
|
|
thread_printf ("Internal rwlock synchronisation mutex is not valid. this %p", this);
|
|
|
|
magic = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
* 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
|
|
|
if (attr)
|
|
|
|
if (attr->shared != PTHREAD_PROCESS_PRIVATE)
|
|
|
|
{
|
2003-07-26 06:53:59 +02:00
|
|
|
magic = 0;
|
|
|
|
return;
|
* 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
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutex::is_good_object (&verifyable_mutex_obj))
|
* 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
|
|
|
{
|
|
|
|
thread_printf ("Internal rwlock mutex is not valid. this %p", this);
|
|
|
|
magic = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Change the mutex type to NORMAL to speed up mutex operations */
|
|
|
|
mtx.type = PTHREAD_MUTEX_NORMAL;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
verifyable_cond_obj = &cond_readers;
|
|
|
|
if (!pthread_cond::is_good_object (&verifyable_cond_obj))
|
* 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
|
|
|
{
|
|
|
|
thread_printf ("Internal rwlock readers cond is not valid. this %p", this);
|
|
|
|
magic = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
verifyable_cond_obj = &cond_writers;
|
|
|
|
if (!pthread_cond::is_good_object (&verifyable_cond_obj))
|
* 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
|
|
|
{
|
|
|
|
thread_printf ("Internal rwlock writers cond is not valid. this %p", this);
|
|
|
|
magic = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
rwlocks.insert (this);
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
pthread_rwlock::~pthread_rwlock ()
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
rwlocks.remove (this);
|
* 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
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::rdlock ()
|
* 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 result = 0;
|
|
|
|
struct RWLOCK_READER *reader;
|
|
|
|
pthread_t self = pthread::self ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.lock ();
|
* 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
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (lookup_reader (self))
|
* 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
|
|
|
{
|
|
|
|
result = EDEADLK;
|
|
|
|
goto DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
reader = new struct RWLOCK_READER;
|
|
|
|
if (!reader)
|
|
|
|
{
|
|
|
|
result = EAGAIN;
|
|
|
|
goto DONE;
|
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
while (writer || waiting_writers)
|
2003-07-26 06:53:59 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_cleanup_push (pthread_rwlock::rdlock_cleanup, this);
|
* 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
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
++waiting_readers;
|
|
|
|
cond_readers.wait (&mtx);
|
|
|
|
--waiting_readers;
|
* 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
|
|
|
|
|
|
|
pthread_cleanup_pop (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
reader->thread = self;
|
2003-03-27 20:52:20 +01:00
|
|
|
add_reader (reader);
|
* 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
|
|
|
|
|
|
|
DONE:
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.unlock ();
|
* 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
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::tryrdlock ()
|
* 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 result = 0;
|
|
|
|
pthread_t self = pthread::self ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.lock ();
|
* 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
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (writer || waiting_writers || lookup_reader (self))
|
* 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
|
|
|
result = EBUSY;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct RWLOCK_READER *reader = new struct RWLOCK_READER;
|
|
|
|
if (reader)
|
2003-07-26 06:53:59 +02:00
|
|
|
{
|
|
|
|
reader->thread = self;
|
|
|
|
add_reader (reader);
|
|
|
|
}
|
* 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
|
|
|
else
|
2003-07-26 06:53:59 +02:00
|
|
|
result = EAGAIN;
|
* 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
|
|
|
}
|
2003-07-26 06:53:59 +02:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.unlock ();
|
* 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
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::wrlock ()
|
* 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 result = 0;
|
|
|
|
pthread_t self = pthread::self ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.lock ();
|
* 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
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (writer == self || lookup_reader (self))
|
* 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
|
|
|
{
|
|
|
|
result = EDEADLK;
|
|
|
|
goto DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (writer || readers)
|
2003-07-26 06:53:59 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_cleanup_push (pthread_rwlock::wrlock_cleanup, this);
|
* 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
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
++waiting_writers;
|
|
|
|
cond_writers.wait (&mtx);
|
|
|
|
--waiting_writers;
|
* 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
|
|
|
|
|
|
|
pthread_cleanup_pop (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
writer = self;
|
|
|
|
|
|
|
|
DONE:
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.unlock ();
|
* 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
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::trywrlock ()
|
* 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 result = 0;
|
|
|
|
pthread_t self = pthread::self ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.lock ();
|
* 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
|
|
|
|
|
|
|
if (writer || readers)
|
|
|
|
result = EBUSY;
|
|
|
|
else
|
|
|
|
writer = self;
|
2003-07-26 06:53:59 +02:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.unlock ();
|
* 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
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::unlock ()
|
* 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 result = 0;
|
|
|
|
pthread_t self = pthread::self ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.lock ();
|
* 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
|
|
|
|
|
|
|
if (writer)
|
|
|
|
{
|
|
|
|
if (writer != self)
|
2003-07-26 06:53:59 +02:00
|
|
|
{
|
|
|
|
result = EPERM;
|
|
|
|
goto DONE;
|
|
|
|
}
|
* 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
|
|
|
|
|
|
|
writer = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
struct RWLOCK_READER *reader = lookup_reader (self);
|
* 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
|
|
|
|
|
|
|
if (!reader)
|
2003-07-26 06:53:59 +02:00
|
|
|
{
|
|
|
|
result = EPERM;
|
|
|
|
goto DONE;
|
|
|
|
}
|
* 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
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
remove_reader (reader);
|
* 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
|
|
|
delete reader;
|
|
|
|
}
|
|
|
|
|
2003-04-15 22:14:12 +02:00
|
|
|
release ();
|
* 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
|
|
|
|
|
|
|
DONE:
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.unlock ();
|
* 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
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::add_reader (struct RWLOCK_READER *rd)
|
* 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
|
|
|
{
|
2003-12-01 23:10:57 +01:00
|
|
|
List_insert (readers, rd);
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::remove_reader (struct RWLOCK_READER *rd)
|
* 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
|
|
|
{
|
2003-10-24 21:34:47 +02:00
|
|
|
List_remove (readers_mx, readers, rd);
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
struct pthread_rwlock::RWLOCK_READER *
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::lookup_reader (pthread_t thread)
|
* 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
|
|
|
{
|
2003-10-24 21:34:47 +02:00
|
|
|
readers_mx.lock ();
|
|
|
|
|
|
|
|
struct RWLOCK_READER *cur = readers;
|
* 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
|
|
|
|
2003-10-24 21:34:47 +02:00
|
|
|
while (cur && cur->thread != thread)
|
|
|
|
cur = cur->next;
|
* 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
|
|
|
|
2003-10-24 21:34:47 +02:00
|
|
|
readers_mx.unlock ();
|
|
|
|
|
|
|
|
return cur;
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::rdlock_cleanup (void *arg)
|
* 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
|
|
|
{
|
|
|
|
pthread_rwlock *rwlock = (pthread_rwlock *) arg;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
--(rwlock->waiting_readers);
|
2003-04-15 22:14:12 +02:00
|
|
|
rwlock->release ();
|
2003-03-27 20:52:20 +01:00
|
|
|
rwlock->mtx.unlock ();
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::wrlock_cleanup (void *arg)
|
* 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
|
|
|
{
|
|
|
|
pthread_rwlock *rwlock = (pthread_rwlock *) arg;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
--(rwlock->waiting_writers);
|
2003-04-15 22:14:12 +02:00
|
|
|
rwlock->release ();
|
2003-03-27 20:52:20 +01:00
|
|
|
rwlock->mtx.unlock ();
|
* 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
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_rwlock::_fixup_after_fork ()
|
* 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
|
|
|
{
|
|
|
|
pthread_t self = pthread::self ();
|
|
|
|
struct RWLOCK_READER **temp = &readers;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
waiting_readers = 0;
|
|
|
|
waiting_writers = 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
|
|
|
|
2003-10-24 21:34:47 +02:00
|
|
|
if (!readers_mx.init ())
|
|
|
|
api_fatal ("pthread_rwlock::_fixup_after_fork () failed to recreate mutex");
|
|
|
|
|
* 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
|
|
|
/* Unlock eventually locked mutex */
|
2003-03-27 20:52:20 +01:00
|
|
|
mtx.unlock ();
|
* 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
|
|
|
/*
|
|
|
|
* Remove all readers except self
|
|
|
|
*/
|
|
|
|
while (*temp)
|
|
|
|
{
|
|
|
|
if ((*temp)->thread == self)
|
2003-07-26 06:53:59 +02:00
|
|
|
temp = &((*temp)->next);
|
* 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
|
|
|
else
|
2003-07-26 06:53:59 +02:00
|
|
|
{
|
|
|
|
struct RWLOCK_READER *cur = *temp;
|
|
|
|
*temp = (*temp)->next;
|
|
|
|
delete cur;
|
|
|
|
}
|
* 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-17 11:12:36 +02:00
|
|
|
/* pthread_key */
|
|
|
|
/* static members */
|
2002-09-30 23:06:05 +02:00
|
|
|
/* This stores pthread_key information across fork() boundaries */
|
|
|
|
List<pthread_key> pthread_key::keys;
|
2002-09-21 05:20:27 +02:00
|
|
|
|
2002-09-17 11:12:36 +02:00
|
|
|
/* non-static members */
|
2001-09-11 10:15:39 +02:00
|
|
|
|
2002-09-21 03:59:46 +02:00
|
|
|
pthread_key::pthread_key (void (*aDestructor) (void *)):verifyable_object (PTHREAD_KEY_MAGIC), destructor (aDestructor)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
tls_index = TlsAlloc ();
|
|
|
|
if (tls_index == TLS_OUT_OF_INDEXES)
|
2001-03-21 03:17:58 +01:00
|
|
|
magic = 0;
|
2002-09-21 05:20:27 +02:00
|
|
|
else
|
2003-03-27 20:52:20 +01:00
|
|
|
keys.insert (this);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
pthread_key::~pthread_key ()
|
|
|
|
{
|
2002-09-21 05:20:27 +02:00
|
|
|
/* We may need to make the list code lock the list during operations
|
|
|
|
*/
|
2002-09-22 23:39:03 +02:00
|
|
|
if (magic != 0)
|
2002-09-17 11:12:36 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
keys.remove (this);
|
|
|
|
TlsFree (tls_index);
|
2002-09-17 11:12:36 +02:00
|
|
|
}
|
2001-04-23 04:56:19 +02:00
|
|
|
}
|
2001-03-21 03:17:58 +01:00
|
|
|
|
2002-09-17 11:12:36 +02:00
|
|
|
void
|
2003-10-24 21:34:47 +02:00
|
|
|
pthread_key::_fixup_before_fork ()
|
2002-09-17 11:12:36 +02:00
|
|
|
{
|
|
|
|
fork_buf = get ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-10-24 21:34:47 +02:00
|
|
|
pthread_key::_fixup_after_fork ()
|
2002-09-17 11:12:36 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
tls_index = TlsAlloc ();
|
|
|
|
if (tls_index == TLS_OUT_OF_INDEXES)
|
|
|
|
api_fatal ("pthread_key::recreate_key_from_buffer () failed to reallocate Tls storage");
|
2002-09-17 11:12:36 +02:00
|
|
|
set (fork_buf);
|
|
|
|
}
|
|
|
|
|
2002-09-21 03:59:46 +02:00
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_key::run_destructor ()
|
2002-09-21 03:59:46 +02:00
|
|
|
{
|
2002-09-30 03:19:45 +02:00
|
|
|
if (destructor)
|
2002-09-27 17:08:50 +02:00
|
|
|
{
|
2002-09-30 03:19:45 +02:00
|
|
|
void *oldValue = get ();
|
2002-09-27 17:08:50 +02:00
|
|
|
if (oldValue)
|
|
|
|
{
|
2003-01-14 21:31:47 +01:00
|
|
|
set (NULL);
|
|
|
|
destructor (oldValue);
|
2002-09-27 17:08:50 +02:00
|
|
|
}
|
|
|
|
}
|
2002-09-21 03:59:46 +02:00
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* pshared mutexs:
|
|
|
|
|
|
|
|
REMOVED FROM CURRENT. These can be reinstated with the daemon, when all the
|
|
|
|
gymnastics can be a lot easier.
|
|
|
|
|
|
|
|
the mutex_t (size 4) is not used as a verifyable object because we cannot
|
|
|
|
guarantee the same address space for all processes.
|
|
|
|
we use the following:
|
|
|
|
high bit set (never a valid address).
|
|
|
|
second byte is reserved for the priority.
|
|
|
|
third byte is reserved
|
|
|
|
fourth byte is the mutex id. (max 255 cygwin mutexs system wide).
|
|
|
|
creating mutex's does get slower and slower, but as creation is a one time
|
|
|
|
job, it should never become an issue
|
|
|
|
|
|
|
|
And if you're looking at this and thinking, why not an array in cygwin for all mutexs,
|
|
|
|
- you incur a penalty on _every_ mutex call and you have toserialise them all.
|
|
|
|
... Bad karma.
|
|
|
|
|
|
|
|
option 2? put everything in userspace and update the ABI?
|
|
|
|
- bad karma as well - the HANDLE, while identical across process's,
|
|
|
|
Isn't duplicated, it's reopened. */
|
2001-04-21 16:23:47 +02:00
|
|
|
|
2002-09-21 00:34:05 +02:00
|
|
|
/* static members */
|
2003-03-18 20:39:21 +01:00
|
|
|
|
2003-03-23 11:52:02 +01:00
|
|
|
List<pthread_mutex> pthread_mutex::mutexes;
|
|
|
|
|
2002-09-30 23:06:05 +02:00
|
|
|
/* This is used for mutex creation protection within a single process only */
|
2003-10-24 21:34:47 +02:00
|
|
|
fast_mutex NO_COPY pthread_mutex::mutex_initialization_lock;
|
2002-09-30 01:47:45 +02:00
|
|
|
|
|
|
|
/* We can only be called once.
|
2002-09-30 03:19:45 +02:00
|
|
|
TODO: (no rush) use a non copied memory section to
|
|
|
|
hold an initialization flag. */
|
2002-09-30 01:47:45 +02:00
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_mutex::init_mutex ()
|
2002-09-30 01:47:45 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!mutex_initialization_lock.init ())
|
2002-09-30 17:11:55 +02:00
|
|
|
api_fatal ("Could not create win32 Mutex for pthread mutex static initializer support.");
|
2002-09-30 01:47:45 +02:00
|
|
|
}
|
|
|
|
|
2003-01-09 21:50:23 +01:00
|
|
|
pthread_mutex::pthread_mutex (pthread_mutexattr *attr) :
|
|
|
|
verifyable_object (PTHREAD_MUTEX_MAGIC),
|
2003-03-18 20:39:21 +01:00
|
|
|
lock_counter (0),
|
2003-01-09 21:50:23 +01:00
|
|
|
win32_obj_id (NULL), recursion_counter (0),
|
2007-02-22 13:34:55 +01:00
|
|
|
condwaits (0), owner (NULL),
|
|
|
|
#ifdef DEBUGGING
|
|
|
|
tid (0),
|
|
|
|
#endif
|
|
|
|
type (PTHREAD_MUTEX_ERRORCHECK),
|
2003-01-14 21:31:47 +01:00
|
|
|
pshared (PTHREAD_PROCESS_PRIVATE)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-01-09 21:50:23 +01:00
|
|
|
win32_obj_id = ::CreateSemaphore (&sec_none_nih, 0, LONG_MAX, NULL);
|
|
|
|
if (!win32_obj_id)
|
2001-04-21 16:23:47 +02:00
|
|
|
{
|
|
|
|
magic = 0;
|
|
|
|
return;
|
|
|
|
}
|
2003-01-09 21:50:23 +01:00
|
|
|
/*attr checked in the C call */
|
|
|
|
if (attr)
|
2001-09-12 05:18:05 +02:00
|
|
|
{
|
2003-01-09 21:50:23 +01:00
|
|
|
if (attr->pshared == PTHREAD_PROCESS_SHARED)
|
2003-01-14 21:31:47 +01:00
|
|
|
{
|
|
|
|
// fail
|
|
|
|
magic = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-01-09 21:50:23 +01:00
|
|
|
type = attr->mutextype;
|
2001-09-12 05:18:05 +02:00
|
|
|
}
|
2003-01-09 21:50:23 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutexes.insert (this);
|
2001-04-12 06:04:53 +02:00
|
|
|
}
|
2001-03-21 03:17:58 +01:00
|
|
|
|
|
|
|
pthread_mutex::~pthread_mutex ()
|
|
|
|
{
|
2003-01-09 21:50:23 +01:00
|
|
|
if (win32_obj_id)
|
|
|
|
CloseHandle (win32_obj_id);
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
mutexes.remove (this);
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_mutex::_lock (pthread_t self)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-01-09 21:50:23 +01:00
|
|
|
int result = 0;
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2003-03-27 20:57:06 +01:00
|
|
|
if (InterlockedIncrement ((long *)&lock_counter) == 1)
|
2003-03-27 20:52:20 +01:00
|
|
|
set_owner (self);
|
2005-06-11 06:56:36 +02:00
|
|
|
else if (type == PTHREAD_MUTEX_NORMAL || !pthread::equal (owner, self))
|
|
|
|
{
|
2005-07-06 22:05:03 +02:00
|
|
|
cancelable_wait (win32_obj_id, INFINITE, cw_no_cancel, cw_sig_resume);
|
2005-06-11 06:56:36 +02:00
|
|
|
set_owner (self);
|
|
|
|
}
|
|
|
|
else
|
2001-09-12 05:18:05 +02:00
|
|
|
{
|
2003-03-18 20:39:21 +01:00
|
|
|
InterlockedDecrement ((long *) &lock_counter);
|
2003-03-27 20:57:06 +01:00
|
|
|
if (type == PTHREAD_MUTEX_RECURSIVE)
|
2003-03-27 20:52:20 +01:00
|
|
|
result = lock_recursive ();
|
2003-01-09 21:50:23 +01:00
|
|
|
else
|
2003-01-14 21:31:47 +01:00
|
|
|
result = EDEADLK;
|
2001-09-12 05:18:05 +02:00
|
|
|
}
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2003-01-09 21:50:23 +01:00
|
|
|
return result;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_mutex::_trylock (pthread_t self)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-01-09 21:50:23 +01:00
|
|
|
int result = 0;
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2003-09-25 05:51:51 +02:00
|
|
|
if (InterlockedCompareExchange ((long *) &lock_counter, 1, 0) == 0)
|
2003-03-27 20:52:20 +01:00
|
|
|
set_owner (self);
|
2003-04-17 21:57:01 +02:00
|
|
|
else if (type == PTHREAD_MUTEX_RECURSIVE && pthread::equal (owner, self))
|
2003-03-27 20:52:20 +01:00
|
|
|
result = lock_recursive ();
|
2003-01-09 21:50:23 +01:00
|
|
|
else
|
|
|
|
result = EBUSY;
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2003-01-09 21:50:23 +01:00
|
|
|
return result;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_mutex::_unlock (pthread_t self)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-04-17 21:57:01 +02:00
|
|
|
if (!pthread::equal (owner, self))
|
2003-01-09 21:50:23 +01:00
|
|
|
return EPERM;
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2003-03-27 20:57:06 +01:00
|
|
|
if (--recursion_counter == 0)
|
2001-09-12 05:18:05 +02:00
|
|
|
{
|
2003-01-09 21:50:23 +01:00
|
|
|
owner = NULL;
|
2007-02-22 13:34:55 +01:00
|
|
|
#ifdef DEBUGGING
|
|
|
|
tid = 0;
|
|
|
|
#endif
|
2003-03-18 20:39:21 +01:00
|
|
|
if (InterlockedDecrement ((long *)&lock_counter))
|
2003-01-14 21:31:47 +01:00
|
|
|
// Another thread is waiting
|
|
|
|
::ReleaseSemaphore (win32_obj_id, 1, NULL);
|
2001-09-12 05:18:05 +02:00
|
|
|
}
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2003-01-09 21:50:23 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_mutex::_destroy (pthread_t self)
|
2003-01-09 21:50:23 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (condwaits || _trylock (self))
|
2003-01-09 21:50:23 +01:00
|
|
|
// Do not destroy a condwaited or locked mutex
|
|
|
|
return EBUSY;
|
|
|
|
else if (recursion_counter != 1)
|
|
|
|
{
|
|
|
|
// Do not destroy a recursive locked mutex
|
|
|
|
--recursion_counter;
|
|
|
|
return EBUSY;
|
|
|
|
}
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2003-01-09 21:50:23 +01:00
|
|
|
delete this;
|
|
|
|
return 0;
|
|
|
|
}
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2001-09-11 10:15:39 +02:00
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_mutex::_fixup_after_fork ()
|
2001-09-11 10:15:39 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
debug_printf ("mutex %x in _fixup_after_fork", this);
|
2001-09-11 10:15:39 +02:00
|
|
|
if (pshared != PTHREAD_PROCESS_PRIVATE)
|
2003-03-27 20:52:20 +01:00
|
|
|
api_fatal ("pthread_mutex::_fixup_after_fork () doesn'tunderstand PROCESS_SHARED mutex's");
|
2003-01-09 21:50:23 +01:00
|
|
|
|
2003-03-27 20:57:06 +01:00
|
|
|
if (owner == NULL)
|
2007-02-22 13:34:55 +01:00
|
|
|
{
|
|
|
|
/* mutex has no owner, reset to initial */
|
|
|
|
lock_counter = 0;
|
|
|
|
#ifdef DEBUGGING
|
|
|
|
tid = 0;
|
|
|
|
#endif
|
|
|
|
}
|
2003-03-18 20:39:21 +01:00
|
|
|
else if (lock_counter != 0)
|
2007-02-22 13:34:55 +01:00
|
|
|
{
|
|
|
|
/* All waiting threads are gone after a fork */
|
|
|
|
lock_counter = 1;
|
|
|
|
#ifdef DEBUGGING
|
|
|
|
tid = 0xffffffff; /* Don't know the tid after a fork */
|
|
|
|
#endif
|
|
|
|
}
|
2003-01-09 21:50:23 +01:00
|
|
|
|
|
|
|
win32_obj_id = ::CreateSemaphore (&sec_none_nih, 0, LONG_MAX, NULL);
|
|
|
|
if (!win32_obj_id)
|
2003-03-27 20:52:20 +01:00
|
|
|
api_fatal ("pthread_mutex::_fixup_after_fork () failed to recreate win32 semaphore for mutex");
|
2003-01-09 21:50:23 +01:00
|
|
|
|
2001-09-12 05:18:05 +02:00
|
|
|
condwaits = 0;
|
2001-09-11 10:15:39 +02:00
|
|
|
}
|
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
pthread_mutexattr::pthread_mutexattr ():verifyable_object (PTHREAD_MUTEXATTR_MAGIC),
|
2005-06-11 06:56:36 +02:00
|
|
|
pshared (PTHREAD_PROCESS_PRIVATE), mutextype (PTHREAD_MUTEX_ERRORCHECK)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutexattr::~pthread_mutexattr ()
|
|
|
|
{
|
2001-04-23 04:56:19 +02:00
|
|
|
}
|
2001-04-12 06:04:53 +02:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
verifyable_object::verifyable_object (long verifyer):
|
|
|
|
magic (verifyer)
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
verifyable_object::~verifyable_object ()
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
2001-03-21 03:17:58 +01:00
|
|
|
magic = 0;
|
2001-03-17 02:14:58 +01:00
|
|
|
}
|
|
|
|
|
2003-12-14 08:09:22 +01:00
|
|
|
DWORD WINAPI
|
|
|
|
pthread::thread_init_wrapper (void *arg)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-12-03 06:21:55 +01:00
|
|
|
pthread *thread = (pthread *) arg;
|
2004-04-13 04:59:19 +02:00
|
|
|
set_tls_self_pointer (thread);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
thread->mutex.lock ();
|
2003-12-23 17:26:31 +01:00
|
|
|
|
2002-06-05 14:39:55 +02:00
|
|
|
// if thread is detached force cleanup on exit
|
2002-06-10 03:10:45 +02:00
|
|
|
if (thread->attr.joinable == PTHREAD_CREATE_DETACHED && thread->joiner == NULL)
|
2002-11-24 14:54:14 +01:00
|
|
|
thread->joiner = thread;
|
2008-02-15 18:53:11 +01:00
|
|
|
_my_tls.sigmask = thread->parent_tls->sigmask;
|
2003-03-27 20:52:20 +01:00
|
|
|
thread->mutex.unlock ();
|
2002-06-05 14:39:55 +02:00
|
|
|
|
2003-12-23 17:26:31 +01:00
|
|
|
thread_printf ("started thread %p %p %p %p %p %p", arg, &_my_tls.local_clib,
|
2001-03-21 03:17:58 +01:00
|
|
|
_impure_ptr, thread, thread->function, thread->arg);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-18 22:11:25 +01:00
|
|
|
// call the user's thread
|
2000-02-17 20:38:33 +01:00
|
|
|
void *ret = thread->function (thread->arg);
|
|
|
|
|
2002-07-04 16:17:30 +02:00
|
|
|
thread->exit (ret);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-12-14 08:09:22 +01:00
|
|
|
return 0; // just for show. Never returns.
|
2003-12-03 06:21:55 +01:00
|
|
|
}
|
|
|
|
|
2002-09-16 12:53:29 +02:00
|
|
|
unsigned long
|
|
|
|
pthread::getsequence_np ()
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
return get_thread_id ();
|
2002-09-16 12:53:29 +02:00
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
pthread::create (pthread_t *thread, const pthread_attr_t *attr,
|
2001-03-21 03:17:58 +01:00
|
|
|
void *(*start_routine) (void *), void *arg)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (attr && !pthread_attr::is_good_object (attr))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
*thread = new pthread ();
|
2005-08-05 18:14:41 +02:00
|
|
|
if (!(*thread)->create (start_routine, attr ? *attr : NULL, arg))
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-03-21 03:17:58 +01:00
|
|
|
delete (*thread);
|
|
|
|
*thread = NULL;
|
|
|
|
return EAGAIN;
|
2000-08-04 06:04:46 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
pthread::once (pthread_once_t *once_control, void (*init_routine) (void))
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2002-06-23 09:36:21 +02:00
|
|
|
// already done ?
|
|
|
|
if (once_control->state)
|
|
|
|
return 0;
|
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
pthread_mutex_lock (&once_control->mutex);
|
2002-09-30 03:19:45 +02:00
|
|
|
/* Here we must set a cancellation handler to unlock the mutex if needed */
|
|
|
|
/* but a cancellation handler is not the right thing. We need this in the thread
|
2001-07-26 22:47:05 +02:00
|
|
|
*cleanup routine. Assumption: a thread can only be in one pthread_once routine
|
|
|
|
*at a time. Stote a mutex_t *in the pthread_structure. if that's non null unlock
|
|
|
|
*on pthread_exit ();
|
2001-04-12 06:04:53 +02:00
|
|
|
*/
|
2002-06-23 09:36:21 +02:00
|
|
|
if (!once_control->state)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
|
|
|
init_routine ();
|
|
|
|
once_control->state = 1;
|
|
|
|
}
|
2002-09-30 03:19:45 +02:00
|
|
|
/* Here we must remove our cancellation handler */
|
2001-04-12 06:04:53 +02:00
|
|
|
pthread_mutex_unlock (&once_control->mutex);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
pthread::cancel (pthread_t thread)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (&thread))
|
2001-04-12 06:04:53 +02:00
|
|
|
return ESRCH;
|
|
|
|
|
2002-07-04 16:17:30 +02:00
|
|
|
return thread->cancel ();
|
2001-04-12 06:04:53 +02:00
|
|
|
}
|
|
|
|
|
2001-04-13 17:28:20 +02:00
|
|
|
void
|
2005-07-05 05:16:46 +02:00
|
|
|
pthread::atforkprepare ()
|
2001-04-13 17:28:20 +02:00
|
|
|
{
|
2001-04-23 04:56:19 +02:00
|
|
|
callback *cb = MT_INTERFACE->pthread_prepare;
|
2001-04-13 17:28:20 +02:00
|
|
|
while (cb)
|
|
|
|
{
|
2001-04-23 04:56:19 +02:00
|
|
|
cb->cb ();
|
|
|
|
cb = cb->next;
|
2001-04-13 17:28:20 +02:00
|
|
|
}
|
2004-03-26 21:02:01 +01:00
|
|
|
|
|
|
|
__fp_lock_all ();
|
2004-03-29 17:14:07 +02:00
|
|
|
|
|
|
|
MT_INTERFACE->fixup_before_fork ();
|
2001-04-13 17:28:20 +02:00
|
|
|
}
|
|
|
|
|
2001-04-23 04:56:19 +02:00
|
|
|
void
|
2005-07-05 05:16:46 +02:00
|
|
|
pthread::atforkparent ()
|
2001-04-13 17:28:20 +02:00
|
|
|
{
|
2004-03-26 21:02:01 +01:00
|
|
|
__fp_unlock_all ();
|
|
|
|
|
2001-04-23 04:56:19 +02:00
|
|
|
callback *cb = MT_INTERFACE->pthread_parent;
|
2001-04-13 17:28:20 +02:00
|
|
|
while (cb)
|
|
|
|
{
|
2001-04-23 04:56:19 +02:00
|
|
|
cb->cb ();
|
|
|
|
cb = cb->next;
|
2001-04-13 17:28:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-07-05 05:16:46 +02:00
|
|
|
pthread::atforkchild ()
|
2001-04-13 17:28:20 +02:00
|
|
|
{
|
2002-09-17 11:12:36 +02:00
|
|
|
MT_INTERFACE->fixup_after_fork ();
|
|
|
|
|
2004-03-26 21:02:01 +01:00
|
|
|
__fp_unlock_all ();
|
|
|
|
|
2001-04-23 04:56:19 +02:00
|
|
|
callback *cb = MT_INTERFACE->pthread_child;
|
2001-04-13 17:28:20 +02:00
|
|
|
while (cb)
|
|
|
|
{
|
2001-04-23 04:56:19 +02:00
|
|
|
cb->cb ();
|
|
|
|
cb = cb->next;
|
2001-04-13 17:28:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* Register a set of functions to run before and after fork.
|
|
|
|
prepare calls are called in LI-FC order.
|
|
|
|
parent and child calls are called in FI-FC order. */
|
2001-04-13 17:28:20 +02:00
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
pthread::atfork (void (*prepare)(void), void (*parent)(void), void (*child)(void))
|
2001-04-13 17:28:20 +02:00
|
|
|
{
|
2001-07-26 22:47:05 +02:00
|
|
|
callback *prepcb = NULL, *parentcb = NULL, *childcb = NULL;
|
2001-04-13 17:28:20 +02:00
|
|
|
if (prepare)
|
|
|
|
{
|
|
|
|
prepcb = new callback;
|
|
|
|
if (!prepcb)
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
if (parent)
|
|
|
|
{
|
|
|
|
parentcb = new callback;
|
|
|
|
if (!parentcb)
|
|
|
|
{
|
|
|
|
if (prepcb)
|
|
|
|
delete prepcb;
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (child)
|
|
|
|
{
|
|
|
|
childcb = new callback;
|
|
|
|
if (!childcb)
|
|
|
|
{
|
|
|
|
if (prepcb)
|
|
|
|
delete prepcb;
|
|
|
|
if (parentcb)
|
|
|
|
delete parentcb;
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prepcb)
|
|
|
|
{
|
|
|
|
prepcb->cb = prepare;
|
2003-12-01 23:10:57 +01:00
|
|
|
List_insert (MT_INTERFACE->pthread_prepare, prepcb);
|
2001-04-13 17:28:20 +02:00
|
|
|
}
|
|
|
|
if (parentcb)
|
|
|
|
{
|
|
|
|
parentcb->cb = parent;
|
2001-07-26 22:47:05 +02:00
|
|
|
callback **t = &MT_INTERFACE->pthread_parent;
|
2001-04-13 17:28:20 +02:00
|
|
|
while (*t)
|
|
|
|
t = &(*t)->next;
|
2002-09-30 03:19:45 +02:00
|
|
|
/* t = pointer to last next in the list */
|
2003-12-01 23:10:57 +01:00
|
|
|
List_insert (*t, parentcb);
|
2001-04-13 17:28:20 +02:00
|
|
|
}
|
|
|
|
if (childcb)
|
|
|
|
{
|
|
|
|
childcb->cb = child;
|
2001-07-26 22:47:05 +02:00
|
|
|
callback **t = &MT_INTERFACE->pthread_child;
|
2001-04-13 17:28:20 +02:00
|
|
|
while (*t)
|
|
|
|
t = &(*t)->next;
|
2002-09-30 03:19:45 +02:00
|
|
|
/* t = pointer to last next in the list */
|
2003-12-01 23:10:57 +01:00
|
|
|
List_insert (*t, childcb);
|
2001-04-13 17:28:20 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_init (pthread_attr_t *attr)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-06-11 21:08:42 +02:00
|
|
|
if (pthread_attr::is_good_object (attr))
|
2003-06-12 20:15:34 +02:00
|
|
|
return EBUSY;
|
2003-06-11 21:08:42 +02:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
*attr = new pthread_attr;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
|
|
|
delete (*attr);
|
|
|
|
*attr = NULL;
|
2003-06-11 21:08:42 +02:00
|
|
|
return ENOMEM;
|
2001-03-21 03:17:58 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_getinheritsched (const pthread_attr_t *attr,
|
2001-04-12 06:04:53 +02:00
|
|
|
int *inheritsched)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
*inheritsched = (*attr)->inheritsched;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_getschedparam (const pthread_attr_t *attr,
|
2001-04-12 06:04:53 +02:00
|
|
|
struct sched_param *param)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
*param = (*attr)->schedparam;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* From a pure code point of view, this should call a helper in sched.cc,
|
|
|
|
to allow for someone adding scheduler policy changes to win32 in the future.
|
|
|
|
However that's extremely unlikely, so short and sweet will do us */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_getschedpolicy (const pthread_attr_t *attr, int *policy)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
*policy = SCHED_FIFO;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_getscope (const pthread_attr_t *attr, int *contentionscope)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
*contentionscope = (*attr)->contentionscope;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_setdetachstate (pthread_attr_t *attr, int detachstate)
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
if (detachstate < 0 || detachstate > 1)
|
|
|
|
return EINVAL;
|
|
|
|
(*attr)->joinable = detachstate;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_getdetachstate (const pthread_attr_t *attr, int *detachstate)
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
*detachstate = (*attr)->joinable;
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_setinheritsched (pthread_attr_t *attr, int inheritsched)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
if (inheritsched != PTHREAD_INHERIT_SCHED
|
|
|
|
&& inheritsched != PTHREAD_EXPLICIT_SCHED)
|
|
|
|
return ENOTSUP;
|
|
|
|
(*attr)->inheritsched = inheritsched;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_setschedparam (pthread_attr_t *attr,
|
2001-04-12 06:04:53 +02:00
|
|
|
const struct sched_param *param)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
if (!valid_sched_parameters (param))
|
|
|
|
return ENOTSUP;
|
|
|
|
(*attr)->schedparam = *param;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* See __pthread_attr_getschedpolicy for some notes */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_setschedpolicy (pthread_attr_t *attr, int policy)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
if (policy != SCHED_FIFO)
|
|
|
|
return ENOTSUP;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_setscope (pthread_attr_t *attr, int contentionscope)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
if (contentionscope != PTHREAD_SCOPE_SYSTEM
|
|
|
|
&& contentionscope != PTHREAD_SCOPE_PROCESS)
|
|
|
|
return EINVAL;
|
2002-09-30 03:19:45 +02:00
|
|
|
/* In future, we may be able to support system scope by escalating the thread
|
|
|
|
priority to exceed the priority class. For now we only support PROCESS scope. */
|
2001-04-12 06:04:53 +02:00
|
|
|
if (contentionscope != PTHREAD_SCOPE_PROCESS)
|
|
|
|
return ENOTSUP;
|
|
|
|
(*attr)->contentionscope = contentionscope;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_setstacksize (pthread_attr_t *attr, size_t size)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
(*attr)->stacksize = size;
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_getstacksize (const pthread_attr_t *attr, size_t *size)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
*size = (*attr)->stacksize;
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_attr_destroy (pthread_attr_t *attr)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_attr::is_good_object (attr))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
delete (*attr);
|
|
|
|
*attr = NULL;
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
pthread::join (pthread_t *thread, void **return_val)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2002-09-21 05:59:58 +02:00
|
|
|
pthread_t joiner = self ();
|
2002-06-05 14:39:55 +02:00
|
|
|
|
2003-01-09 21:57:54 +01:00
|
|
|
joiner->testcancel ();
|
2002-11-24 14:54:14 +01:00
|
|
|
|
2002-06-23 09:36:21 +02:00
|
|
|
// Initialize return val with NULL
|
|
|
|
if (return_val)
|
|
|
|
*return_val = NULL;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (&joiner))
|
2003-01-09 21:57:54 +01:00
|
|
|
return EINVAL;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (thread))
|
2001-03-21 03:17:58 +01:00
|
|
|
return ESRCH;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-04-17 21:57:01 +02:00
|
|
|
if (equal (*thread,joiner))
|
2002-06-23 09:36:21 +02:00
|
|
|
return EDEADLK;
|
2002-06-05 14:39:55 +02:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
(*thread)->mutex.lock ();
|
2002-06-10 04:40:13 +02:00
|
|
|
|
2002-09-17 11:12:36 +02:00
|
|
|
if ((*thread)->attr.joinable == PTHREAD_CREATE_DETACHED)
|
2002-06-05 14:39:55 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
(*thread)->mutex.unlock ();
|
2002-06-10 04:40:13 +02:00
|
|
|
return EINVAL;
|
2002-06-05 14:39:55 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
else
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2002-06-05 14:39:55 +02:00
|
|
|
(*thread)->joiner = joiner;
|
2002-06-10 03:10:45 +02:00
|
|
|
(*thread)->attr.joinable = PTHREAD_CREATE_DETACHED;
|
2003-03-27 20:52:20 +01:00
|
|
|
(*thread)->mutex.unlock ();
|
2001-04-21 16:23:47 +02:00
|
|
|
|
2005-06-11 06:56:36 +02:00
|
|
|
switch (cancelable_wait ((*thread)->win32_obj_id, INFINITE, cw_no_cancel_self, cw_sig_resume))
|
2005-06-09 07:11:51 +02:00
|
|
|
{
|
|
|
|
case WAIT_OBJECT_0:
|
|
|
|
if (return_val)
|
|
|
|
*return_val = (*thread)->return_ptr;
|
|
|
|
delete (*thread);
|
|
|
|
break;
|
|
|
|
case WAIT_CANCELED:
|
|
|
|
// set joined thread back to joinable since we got canceled
|
|
|
|
(*thread)->joiner = NULL;
|
|
|
|
(*thread)->attr.joinable = PTHREAD_CREATE_JOINABLE;
|
|
|
|
joiner->cancel_self ();
|
|
|
|
// never reached
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// should never happen
|
|
|
|
return EINVAL;
|
|
|
|
}
|
2003-01-09 21:57:54 +01:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
pthread::detach (pthread_t *thread)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (thread))
|
2001-03-21 03:17:58 +01:00
|
|
|
return ESRCH;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
(*thread)->mutex.lock ();
|
2001-04-12 06:04:53 +02:00
|
|
|
if ((*thread)->attr.joinable == PTHREAD_CREATE_DETACHED)
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
(*thread)->mutex.unlock ();
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-06-10 04:40:13 +02:00
|
|
|
// check if thread is still alive
|
2003-10-31 21:42:56 +01:00
|
|
|
if ((*thread)->valid && WaitForSingleObject ((*thread)->win32_obj_id, 0) == WAIT_TIMEOUT)
|
2002-06-10 04:40:13 +02:00
|
|
|
{
|
|
|
|
// force cleanup on exit
|
|
|
|
(*thread)->joiner = *thread;
|
|
|
|
(*thread)->attr.joinable = PTHREAD_CREATE_DETACHED;
|
2003-03-27 20:52:20 +01:00
|
|
|
(*thread)->mutex.unlock ();
|
2002-06-10 04:40:13 +02:00
|
|
|
}
|
|
|
|
else
|
2002-06-23 09:36:21 +02:00
|
|
|
{
|
|
|
|
// thread has already terminated.
|
2003-03-27 20:52:20 +01:00
|
|
|
(*thread)->mutex.unlock ();
|
2002-06-10 04:40:13 +02:00
|
|
|
delete (*thread);
|
2002-06-23 09:36:21 +02:00
|
|
|
}
|
2002-06-05 14:39:55 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
pthread::suspend (pthread_t *thread)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (thread))
|
2001-03-21 03:17:58 +01:00
|
|
|
return ESRCH;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
if ((*thread)->suspended == false)
|
|
|
|
{
|
|
|
|
(*thread)->suspended = true;
|
|
|
|
SuspendThread ((*thread)->win32_obj_id);
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
pthread::resume (pthread_t *thread)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (thread))
|
2001-03-21 03:17:58 +01:00
|
|
|
return ESRCH;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
if ((*thread)->suspended == true)
|
|
|
|
ResumeThread ((*thread)->win32_obj_id);
|
|
|
|
(*thread)->suspended = false;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* provided for source level compatability.
|
|
|
|
See http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_getconcurrency.html
|
|
|
|
*/
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
2005-07-05 05:16:46 +02:00
|
|
|
pthread_getconcurrency ()
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
|
|
|
return MT_INTERFACE->concurrency;
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* keep this in sync with sched.cc */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_getschedparam (pthread_t thread, int *policy,
|
2001-04-12 06:04:53 +02:00
|
|
|
struct sched_param *param)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread::is_good_object (&thread))
|
2001-04-12 06:04:53 +02:00
|
|
|
return ESRCH;
|
|
|
|
*policy = SCHED_FIFO;
|
2002-09-30 03:19:45 +02:00
|
|
|
/* we don't return the current effective priority, we return the current
|
|
|
|
requested priority */
|
2001-04-12 06:04:53 +02:00
|
|
|
*param = thread->attr.schedparam;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-23 17:26:31 +01:00
|
|
|
/* Thread Specific Data */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_key_create (pthread_key_t *key, void (*destructor) (void *))
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-04-12 06:04:53 +02:00
|
|
|
*key = new pthread_key (destructor);
|
2001-03-21 03:17:58 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_key::is_good_object (key))
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
|
|
|
delete (*key);
|
|
|
|
*key = NULL;
|
|
|
|
return EAGAIN;
|
|
|
|
}
|
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_key_delete (pthread_key_t key)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_key::is_good_object (&key))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
delete (key);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* provided for source level compatability. See
|
|
|
|
http://www.opengroup.org/onlinepubs/007908799/xsh/pthread_getconcurrency.html
|
|
|
|
*/
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_setconcurrency (int new_level)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
|
|
|
if (new_level < 0)
|
|
|
|
return EINVAL;
|
|
|
|
MT_INTERFACE->concurrency = new_level;
|
2001-03-21 03:17:58 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2001-03-21 03:17:58 +01:00
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* keep syncronised with sched.cc */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_setschedparam (pthread_t thread, int policy,
|
2001-04-12 06:04:53 +02:00
|
|
|
const struct sched_param *param)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread::is_good_object (&thread))
|
2001-04-12 06:04:53 +02:00
|
|
|
return ESRCH;
|
|
|
|
if (policy != SCHED_FIFO)
|
|
|
|
return ENOTSUP;
|
|
|
|
if (!param)
|
|
|
|
return EINVAL;
|
|
|
|
int rv =
|
|
|
|
sched_set_thread_priority (thread->win32_obj_id, param->sched_priority);
|
|
|
|
if (!rv)
|
|
|
|
thread->attr.schedparam.sched_priority = param->sched_priority;
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_setspecific (pthread_key_t key, const void *value)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_key::is_good_object (&key))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
(key)->set (value);
|
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2001-03-21 03:17:58 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" void *
|
|
|
|
pthread_getspecific (pthread_key_t key)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_key::is_good_object (&key))
|
2001-03-21 03:17:58 +01:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return (key)->get ();
|
|
|
|
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_cond_destroy (pthread_cond_t *cond)
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_cond::is_good_initializer (cond))
|
2001-11-15 12:10:38 +01:00
|
|
|
return 0;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_cond::is_good_object (cond))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
2001-03-17 02:14:58 +01:00
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* reads are atomic */
|
2001-03-21 03:17:58 +01:00
|
|
|
if ((*cond)->waiting)
|
|
|
|
return EBUSY;
|
2001-03-17 02:14:58 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
delete (*cond);
|
|
|
|
*cond = NULL;
|
2001-03-17 02:14:58 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-01-09 21:40:44 +01:00
|
|
|
pthread_cond::init (pthread_cond_t *cond, const pthread_condattr_t *attr)
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
2004-03-04 22:04:14 +01:00
|
|
|
pthread_cond_t new_cond;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (attr && !pthread_condattr::is_good_object (attr))
|
2001-03-17 02:14:58 +01:00
|
|
|
return EINVAL;
|
2003-10-24 21:34:47 +02:00
|
|
|
|
|
|
|
cond_initialization_lock.lock ();
|
2006-03-22 21:38:26 +01:00
|
|
|
|
2004-03-04 22:04:14 +01:00
|
|
|
new_cond = new pthread_cond (attr ? (*attr) : NULL);
|
|
|
|
if (!is_good_object (&new_cond))
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2004-03-04 22:04:14 +01:00
|
|
|
delete new_cond;
|
2003-03-27 20:52:20 +01:00
|
|
|
cond_initialization_lock.unlock ();
|
2001-03-21 03:17:58 +01:00
|
|
|
return EAGAIN;
|
|
|
|
}
|
2004-03-04 22:04:14 +01:00
|
|
|
|
2006-03-22 21:38:26 +01:00
|
|
|
myfault efault;
|
|
|
|
if (efault.faulted ())
|
|
|
|
{
|
|
|
|
delete new_cond;
|
|
|
|
cond_initialization_lock.unlock ();
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
2004-03-04 22:04:14 +01:00
|
|
|
*cond = new_cond;
|
2003-03-27 20:52:20 +01:00
|
|
|
cond_initialization_lock.unlock ();
|
2004-03-04 22:04:14 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
return 0;
|
2001-03-17 02:14:58 +01:00
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_cond_broadcast (pthread_cond_t *cond)
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_cond::is_good_initializer (cond))
|
2003-03-18 20:49:38 +01:00
|
|
|
return 0;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_cond::is_good_object (cond))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
2001-03-18 22:11:25 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
(*cond)->unblock (true);
|
2001-03-17 02:14:58 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_cond_signal (pthread_cond_t *cond)
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_cond::is_good_initializer (cond))
|
2003-03-18 20:49:38 +01:00
|
|
|
return 0;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_cond::is_good_object (cond))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
2001-03-17 02:14:58 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
(*cond)->unblock (false);
|
2001-03-17 02:14:58 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 20:49:38 +01:00
|
|
|
static int
|
2001-09-29 11:01:01 +02:00
|
|
|
__pthread_cond_dowait (pthread_cond_t *cond, pthread_mutex_t *mutex,
|
2003-03-18 20:49:38 +01:00
|
|
|
DWORD waitlength)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutex::is_good_object (mutex))
|
2003-03-18 20:49:38 +01:00
|
|
|
return EINVAL;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutex::can_be_unlocked (mutex))
|
2003-03-18 20:49:38 +01:00
|
|
|
return EPERM;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_cond::is_good_initializer (cond))
|
2003-01-09 21:40:44 +01:00
|
|
|
pthread_cond::init (cond, NULL);
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_cond::is_good_object (cond))
|
2001-03-17 02:14:58 +01:00
|
|
|
return EINVAL;
|
2001-06-26 16:47:48 +02:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
return (*cond)->wait (*mutex, waitlength);
|
2001-03-17 02:14:58 +01:00
|
|
|
}
|
|
|
|
|
2001-09-29 11:01:01 +02:00
|
|
|
extern "C" int
|
|
|
|
pthread_cond_timedwait (pthread_cond_t *cond, pthread_mutex_t *mutex,
|
|
|
|
const struct timespec *abstime)
|
2001-03-18 22:11:25 +01:00
|
|
|
{
|
2003-03-18 20:49:38 +01:00
|
|
|
struct timeval tv;
|
2005-08-05 13:31:33 +02:00
|
|
|
DWORD waitlength;
|
2003-03-18 20:49:38 +01:00
|
|
|
|
2005-07-05 04:02:23 +02:00
|
|
|
myfault efault;
|
2005-07-03 05:25:19 +02:00
|
|
|
if (efault.faulted ())
|
2001-03-18 22:11:25 +01:00
|
|
|
return EINVAL;
|
2003-03-18 20:49:38 +01:00
|
|
|
|
2005-07-03 05:25:19 +02:00
|
|
|
pthread_testcancel ();
|
|
|
|
|
2005-08-05 13:31:33 +02:00
|
|
|
/* According to SUSv3, the abstime value must be checked for validity. */
|
|
|
|
if (abstime->tv_sec < 0
|
|
|
|
|| abstime->tv_nsec < 0
|
|
|
|
|| abstime->tv_nsec > 999999999)
|
|
|
|
return EINVAL;
|
|
|
|
|
2003-03-18 20:49:38 +01:00
|
|
|
gettimeofday (&tv, NULL);
|
2005-08-05 13:31:33 +02:00
|
|
|
/* Check for immediate timeout before converting to microseconds, since
|
|
|
|
the resulting value can easily overflow long. This also allows to
|
|
|
|
evaluate microseconds directly in DWORD. */
|
|
|
|
if (tv.tv_sec > abstime->tv_sec
|
|
|
|
|| (tv.tv_sec == abstime->tv_sec
|
2005-08-12 04:39:13 +02:00
|
|
|
&& tv.tv_usec > abstime->tv_nsec / 1000))
|
2001-09-29 11:01:01 +02:00
|
|
|
return ETIMEDOUT;
|
2005-08-05 13:31:33 +02:00
|
|
|
|
|
|
|
waitlength = (abstime->tv_sec - tv.tv_sec) * 1000;
|
|
|
|
waitlength += (abstime->tv_nsec / 1000 - tv.tv_usec) / 1000;
|
2001-09-29 11:01:01 +02:00
|
|
|
return __pthread_cond_dowait (cond, mutex, waitlength);
|
|
|
|
}
|
2001-03-21 03:17:58 +01:00
|
|
|
|
2001-09-29 11:01:01 +02:00
|
|
|
extern "C" int
|
|
|
|
pthread_cond_wait (pthread_cond_t *cond, pthread_mutex_t *mutex)
|
|
|
|
{
|
2003-03-18 20:49:38 +01:00
|
|
|
pthread_testcancel ();
|
|
|
|
|
2001-09-29 11:01:01 +02:00
|
|
|
return __pthread_cond_dowait (cond, mutex, INFINITE);
|
2001-03-17 02:14:58 +01:00
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_condattr_init (pthread_condattr_t *condattr)
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
2003-06-11 21:08:42 +02:00
|
|
|
if (pthread_condattr::is_good_object (condattr))
|
2003-06-12 20:15:34 +02:00
|
|
|
return EBUSY;
|
2003-06-11 21:08:42 +02:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
*condattr = new pthread_condattr;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_condattr::is_good_object (condattr))
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
|
|
|
delete (*condattr);
|
|
|
|
*condattr = NULL;
|
2003-06-11 21:08:42 +02:00
|
|
|
return ENOMEM;
|
2001-03-21 03:17:58 +01:00
|
|
|
}
|
2001-03-17 02:14:58 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_condattr_getpshared (const pthread_condattr_t *attr, int *pshared)
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_condattr::is_good_object (attr))
|
2001-03-17 02:14:58 +01:00
|
|
|
return EINVAL;
|
2001-03-21 03:17:58 +01:00
|
|
|
*pshared = (*attr)->shared;
|
2001-03-17 02:14:58 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_condattr_setpshared (pthread_condattr_t *attr, int pshared)
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_condattr::is_good_object (attr))
|
2001-03-17 02:14:58 +01:00
|
|
|
return EINVAL;
|
2001-03-21 03:17:58 +01:00
|
|
|
if ((pshared < 0) || (pshared > 1))
|
|
|
|
return EINVAL;
|
2002-09-30 03:19:45 +02:00
|
|
|
/* shared cond vars not currently supported */
|
2001-04-21 16:23:47 +02:00
|
|
|
if (pshared != PTHREAD_PROCESS_PRIVATE)
|
|
|
|
return EINVAL;
|
2001-03-21 03:17:58 +01:00
|
|
|
(*attr)->shared = pshared;
|
2001-03-17 02:14:58 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_condattr_destroy (pthread_condattr_t *condattr)
|
2001-03-17 02:14:58 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_condattr::is_good_object (condattr))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
delete (*condattr);
|
|
|
|
*condattr = NULL;
|
2001-03-17 02:14:58 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlock_destroy (pthread_rwlock_t *rwlock)
|
* 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
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_rwlock::is_good_initializer (rwlock))
|
* 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
|
|
|
return 0;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlock::is_good_object (rwlock))
|
* 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
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if ((*rwlock)->writer || (*rwlock)->readers ||
|
2003-03-27 20:52:20 +01:00
|
|
|
(*rwlock)->waiting_readers || (*rwlock)->waiting_writers)
|
* 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
|
|
|
return EBUSY;
|
|
|
|
|
|
|
|
delete (*rwlock);
|
|
|
|
*rwlock = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
pthread_rwlock::init (pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *attr)
|
|
|
|
{
|
2004-03-04 22:04:14 +01:00
|
|
|
pthread_rwlock_t new_rwlock;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (attr && !pthread_rwlockattr::is_good_object (attr))
|
* 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
|
|
|
return EINVAL;
|
2003-10-24 21:34:47 +02:00
|
|
|
|
|
|
|
rwlock_initialization_lock.lock ();
|
2006-03-22 21:38:26 +01:00
|
|
|
|
2004-03-04 22:04:14 +01:00
|
|
|
new_rwlock = new pthread_rwlock (attr ? (*attr) : NULL);
|
|
|
|
if (!is_good_object (&new_rwlock))
|
* 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
|
|
|
{
|
2004-03-04 22:04:14 +01:00
|
|
|
delete new_rwlock;
|
2003-03-27 20:52:20 +01:00
|
|
|
rwlock_initialization_lock.unlock ();
|
* 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
|
|
|
return EAGAIN;
|
|
|
|
}
|
2004-03-04 22:04:14 +01:00
|
|
|
|
2006-03-22 21:38:26 +01:00
|
|
|
myfault efault;
|
|
|
|
if (efault.faulted ())
|
|
|
|
{
|
|
|
|
delete new_rwlock;
|
|
|
|
rwlock_initialization_lock.unlock ();
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
2004-03-04 22:04:14 +01:00
|
|
|
*rwlock = new_rwlock;
|
2003-03-27 20:52:20 +01:00
|
|
|
rwlock_initialization_lock.unlock ();
|
2004-03-04 22:04:14 +01:00
|
|
|
|
* 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
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlock_rdlock (pthread_rwlock_t *rwlock)
|
* 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
|
|
|
{
|
|
|
|
pthread_testcancel ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_rwlock::is_good_initializer (rwlock))
|
* 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
|
|
|
pthread_rwlock::init (rwlock, NULL);
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlock::is_good_object (rwlock))
|
* 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
|
|
|
return EINVAL;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
return (*rwlock)->rdlock ();
|
* 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
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlock_tryrdlock (pthread_rwlock_t *rwlock)
|
* 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
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_rwlock::is_good_initializer (rwlock))
|
* 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
|
|
|
pthread_rwlock::init (rwlock, NULL);
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlock::is_good_object (rwlock))
|
* 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
|
|
|
return EINVAL;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
return (*rwlock)->tryrdlock ();
|
* 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
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlock_wrlock (pthread_rwlock_t *rwlock)
|
* 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
|
|
|
{
|
|
|
|
pthread_testcancel ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_rwlock::is_good_initializer (rwlock))
|
* 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
|
|
|
pthread_rwlock::init (rwlock, NULL);
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlock::is_good_object (rwlock))
|
* 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
|
|
|
return EINVAL;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
return (*rwlock)->wrlock ();
|
* 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
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlock_trywrlock (pthread_rwlock_t *rwlock)
|
* 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
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_rwlock::is_good_initializer (rwlock))
|
* 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
|
|
|
pthread_rwlock::init (rwlock, NULL);
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlock::is_good_object (rwlock))
|
* 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
|
|
|
return EINVAL;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
return (*rwlock)->trywrlock ();
|
* 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
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlock_unlock (pthread_rwlock_t *rwlock)
|
* 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
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_rwlock::is_good_initializer (rwlock))
|
* 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
|
|
|
return 0;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlock::is_good_object (rwlock))
|
* 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
|
|
|
return EINVAL;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
return (*rwlock)->unlock ();
|
* 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
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlockattr_init (pthread_rwlockattr_t *rwlockattr)
|
* 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
|
|
|
{
|
2003-06-11 21:08:42 +02:00
|
|
|
if (pthread_rwlockattr::is_good_object (rwlockattr))
|
2003-06-12 20:15:34 +02:00
|
|
|
return EBUSY;
|
2003-06-11 21:08:42 +02:00
|
|
|
|
* 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
|
|
|
*rwlockattr = new pthread_rwlockattr;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlockattr::is_good_object (rwlockattr))
|
* 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
|
|
|
{
|
|
|
|
delete (*rwlockattr);
|
|
|
|
*rwlockattr = NULL;
|
2003-06-11 21:08:42 +02:00
|
|
|
return ENOMEM;
|
* 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
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlockattr_getpshared (const pthread_rwlockattr_t *attr, 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
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlockattr::is_good_object (attr))
|
* 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
|
|
|
return EINVAL;
|
|
|
|
*pshared = (*attr)->shared;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlockattr_setpshared (pthread_rwlockattr_t *attr, 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
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlockattr::is_good_object (attr))
|
* 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
|
|
|
return EINVAL;
|
|
|
|
if ((pshared < 0) || (pshared > 1))
|
|
|
|
return EINVAL;
|
|
|
|
/* shared rwlock vars not currently supported */
|
|
|
|
if (pshared != PTHREAD_PROCESS_PRIVATE)
|
|
|
|
return EINVAL;
|
|
|
|
(*attr)->shared = pshared;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_rwlockattr_destroy (pthread_rwlockattr_t *rwlockattr)
|
* 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
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_rwlockattr::is_good_object (rwlockattr))
|
* 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
|
|
|
return EINVAL;
|
|
|
|
delete (*rwlockattr);
|
|
|
|
*rwlockattr = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* Thread signal */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_kill (pthread_t thread, int sig)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2002-09-30 03:19:45 +02:00
|
|
|
// lock myself, for the use of thread2signal
|
2001-09-10 00:39:35 +02:00
|
|
|
// two different kills might clash: FIXME
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread::is_good_object (&thread))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
|
|
|
|
2006-02-06 19:24:11 +01:00
|
|
|
siginfo_t si = {0};
|
2004-01-19 06:46:54 +01:00
|
|
|
si.si_signo = sig;
|
|
|
|
si.si_code = SI_USER;
|
2005-12-03 05:23:35 +01:00
|
|
|
si.si_pid = myself->pid;
|
|
|
|
si.si_uid = myself->uid;
|
2008-02-13 18:21:05 +01:00
|
|
|
int rval;
|
|
|
|
if (!thread->valid)
|
|
|
|
rval = ESRCH;
|
|
|
|
else if (sig)
|
|
|
|
{
|
|
|
|
thread->cygtls->set_threadkill ();
|
|
|
|
rval = sig_send (NULL, si, thread->cygtls);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
switch (WaitForSingleObject (thread->win32_obj_id, 0))
|
|
|
|
{
|
|
|
|
case WAIT_TIMEOUT:
|
|
|
|
rval = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rval = ESRCH;
|
|
|
|
break;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-18 22:11:25 +01:00
|
|
|
// unlock myself
|
2000-02-17 20:38:33 +01:00
|
|
|
return rval;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_sigmask (int operation, const sigset_t *set, sigset_t *old_set)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-11-28 21:55:59 +01:00
|
|
|
return handle_sigprocmask (operation, set, old_set, _my_tls.sigmask);
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-07-26 22:47:05 +02:00
|
|
|
/* ID */
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-23 11:52:02 +01:00
|
|
|
extern "C" int
|
2003-03-18 21:12:05 +01:00
|
|
|
pthread_equal (pthread_t t1, pthread_t t2)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-04-17 21:57:01 +02:00
|
|
|
return pthread::equal (t1, t2);
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* Mutexes */
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
int
|
2002-09-30 01:47:45 +02:00
|
|
|
pthread_mutex::init (pthread_mutex_t *mutex,
|
2004-05-28 21:50:07 +02:00
|
|
|
const pthread_mutexattr_t *attr,
|
|
|
|
const pthread_mutex_t initializer)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2004-03-04 22:04:14 +01:00
|
|
|
pthread_mutex_t new_mutex;
|
|
|
|
|
2005-07-05 04:02:23 +02:00
|
|
|
if (attr && !pthread_mutexattr::is_good_object (attr))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
2003-10-24 21:34:47 +02:00
|
|
|
|
|
|
|
mutex_initialization_lock.lock ();
|
2006-03-22 21:38:26 +01:00
|
|
|
|
2004-03-04 22:04:14 +01:00
|
|
|
new_mutex = new pthread_mutex (attr ? (*attr) : NULL);
|
|
|
|
if (!is_good_object (&new_mutex))
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
2004-03-04 22:04:14 +01:00
|
|
|
delete new_mutex;
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex_initialization_lock.unlock ();
|
2001-03-21 03:17:58 +01:00
|
|
|
return EAGAIN;
|
|
|
|
}
|
2004-03-04 22:04:14 +01:00
|
|
|
|
|
|
|
if (!attr && initializer)
|
|
|
|
{
|
|
|
|
if (initializer == PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP)
|
2004-05-28 21:50:07 +02:00
|
|
|
new_mutex->type = PTHREAD_MUTEX_RECURSIVE;
|
2004-03-04 22:04:14 +01:00
|
|
|
else if (initializer == PTHREAD_NORMAL_MUTEX_INITIALIZER_NP)
|
2004-05-28 21:50:07 +02:00
|
|
|
new_mutex->type = PTHREAD_MUTEX_NORMAL;
|
2004-03-04 22:04:14 +01:00
|
|
|
else if (initializer == PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP)
|
2004-05-28 21:50:07 +02:00
|
|
|
new_mutex->type = PTHREAD_MUTEX_ERRORCHECK;
|
2004-03-04 22:04:14 +01:00
|
|
|
}
|
|
|
|
|
2006-03-22 21:38:26 +01:00
|
|
|
myfault efault;
|
|
|
|
if (efault.faulted ())
|
|
|
|
{
|
|
|
|
delete new_mutex;
|
|
|
|
mutex_initialization_lock.unlock ();
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
2004-03-04 22:04:14 +01:00
|
|
|
*mutex = new_mutex;
|
2003-03-27 20:52:20 +01:00
|
|
|
mutex_initialization_lock.unlock ();
|
2004-03-04 22:04:14 +01:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutex_getprioceiling (const pthread_mutex_t *mutex,
|
2001-04-12 06:04:53 +02:00
|
|
|
int *prioceiling)
|
|
|
|
{
|
2002-09-30 03:19:45 +02:00
|
|
|
/* We don't define _POSIX_THREAD_PRIO_PROTECT because we do't currently support
|
|
|
|
mutex priorities.
|
|
|
|
|
|
|
|
We can support mutex priorities in the future though:
|
|
|
|
Store a priority with each mutex.
|
|
|
|
When the mutex is optained, set the thread priority as appropriate
|
|
|
|
When the mutex is released, reset the thread priority. */
|
2001-04-12 06:04:53 +02:00
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
|
2003-03-23 11:52:02 +01:00
|
|
|
extern "C" int
|
2003-03-18 21:12:05 +01:00
|
|
|
pthread_mutex_lock (pthread_mutex_t *mutex)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2004-03-04 22:04:14 +01:00
|
|
|
if (pthread_mutex::is_good_initializer (mutex))
|
|
|
|
pthread_mutex::init (mutex, NULL, *mutex);
|
|
|
|
if (!pthread_mutex::is_good_object (mutex))
|
|
|
|
return EINVAL;
|
|
|
|
return (*mutex)->lock ();
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutex_trylock (pthread_mutex_t *mutex)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_mutex::is_good_initializer (mutex))
|
2004-03-04 22:04:14 +01:00
|
|
|
pthread_mutex::init (mutex, NULL, *mutex);
|
|
|
|
if (!pthread_mutex::is_good_object (mutex))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
2004-03-04 22:04:14 +01:00
|
|
|
return (*mutex)->trylock ();
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutex_unlock (pthread_mutex_t *mutex)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_mutex::is_good_initializer (mutex))
|
2004-03-04 22:04:14 +01:00
|
|
|
return EPERM;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutex::is_good_object (mutex))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
2003-03-27 20:52:20 +01:00
|
|
|
return (*mutex)->unlock ();
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutex_destroy (pthread_mutex_t *mutex)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-01-09 21:50:23 +01:00
|
|
|
int rv;
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_mutex::is_good_initializer (mutex))
|
2001-04-12 06:04:53 +02:00
|
|
|
return 0;
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutex::is_good_object (mutex))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
rv = (*mutex)->destroy ();
|
2003-01-09 21:50:23 +01:00
|
|
|
if (rv)
|
|
|
|
return rv;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
*mutex = NULL;
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutex_setprioceiling (pthread_mutex_t *mutex, int prioceiling,
|
2001-04-12 06:04:53 +02:00
|
|
|
int *old_ceiling)
|
|
|
|
{
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* Win32 doesn't support mutex priorities - see __pthread_mutex_getprioceiling
|
|
|
|
for more detail */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_getprotocol (const pthread_mutexattr_t *attr,
|
2001-04-12 06:04:53 +02:00
|
|
|
int *protocol)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_getpshared (const pthread_mutexattr_t *attr,
|
2001-04-12 06:04:53 +02:00
|
|
|
int *pshared)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
*pshared = (*attr)->pshared;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_gettype (const pthread_mutexattr_t *attr, int *type)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
*type = (*attr)->mutextype;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-01-09 21:50:23 +01:00
|
|
|
/* FIXME: write and test process shared mutex's. */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_init (pthread_mutexattr_t *attr)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (pthread_mutexattr::is_good_object (attr))
|
2003-06-12 20:15:34 +02:00
|
|
|
return EBUSY;
|
2001-04-12 06:04:53 +02:00
|
|
|
|
|
|
|
*attr = new pthread_mutexattr ();
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
|
|
|
delete (*attr);
|
|
|
|
*attr = NULL;
|
|
|
|
return ENOMEM;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_destroy (pthread_mutexattr_t *attr)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
delete (*attr);
|
|
|
|
*attr = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* Win32 doesn't support mutex priorities */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_setprotocol (pthread_mutexattr_t *attr, int protocol)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* Win32 doesn't support mutex priorities */
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_setprioceiling (pthread_mutexattr_t *attr,
|
2001-04-12 06:04:53 +02:00
|
|
|
int prioceiling)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_getprioceiling (const pthread_mutexattr_t *attr,
|
2001-04-12 06:04:53 +02:00
|
|
|
int *prioceiling)
|
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
return ENOSYS;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_setpshared (pthread_mutexattr_t *attr, int pshared)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
2002-09-30 03:19:45 +02:00
|
|
|
/* we don't use pshared for anything as yet. We need to test PROCESS_SHARED
|
2001-07-26 22:47:05 +02:00
|
|
|
*functionality
|
2001-04-12 06:04:53 +02:00
|
|
|
*/
|
2001-09-10 00:39:35 +02:00
|
|
|
if (pshared != PTHREAD_PROCESS_PRIVATE)
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
|
|
|
(*attr)->pshared = pshared;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-18 21:12:05 +01:00
|
|
|
/* see pthread_mutex_gettype */
|
|
|
|
extern "C" int
|
|
|
|
pthread_mutexattr_settype (pthread_mutexattr_t *attr, int type)
|
2001-04-12 06:04:53 +02:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!pthread_mutexattr::is_good_object (attr))
|
2001-04-12 06:04:53 +02:00
|
|
|
return EINVAL;
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2003-01-09 21:50:23 +01:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case PTHREAD_MUTEX_ERRORCHECK:
|
|
|
|
case PTHREAD_MUTEX_RECURSIVE:
|
2003-03-18 20:39:21 +01:00
|
|
|
case PTHREAD_MUTEX_NORMAL:
|
2003-01-09 21:50:23 +01:00
|
|
|
(*attr)->mutextype = type;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
2001-04-12 06:04:53 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* Semaphores */
|
2002-09-21 01:46:12 +02:00
|
|
|
|
2007-02-20 16:48:04 +01:00
|
|
|
List<semaphore> semaphore::semaphores;
|
|
|
|
|
|
|
|
semaphore::semaphore (int pshared, unsigned int value)
|
|
|
|
: verifyable_object (SEM_MAGIC),
|
|
|
|
shared (pshared),
|
|
|
|
currentvalue (value),
|
|
|
|
fd (-1),
|
|
|
|
hash (0ULL),
|
|
|
|
sem (NULL)
|
|
|
|
{
|
|
|
|
SECURITY_ATTRIBUTES sa = (pshared != PTHREAD_PROCESS_PRIVATE)
|
|
|
|
? sec_all : sec_none_nih;
|
|
|
|
this->win32_obj_id = ::CreateSemaphore (&sa, value, LONG_MAX, NULL);
|
|
|
|
if (!this->win32_obj_id)
|
|
|
|
magic = 0;
|
|
|
|
|
|
|
|
semaphores.insert (this);
|
|
|
|
}
|
|
|
|
|
|
|
|
semaphore::semaphore (unsigned long long shash, LUID sluid, int sfd,
|
|
|
|
sem_t *ssem, int oflag, mode_t mode, unsigned int value)
|
|
|
|
: verifyable_object (SEM_MAGIC),
|
|
|
|
shared (PTHREAD_PROCESS_SHARED),
|
|
|
|
currentvalue (value), /* Unused for named semaphores. */
|
|
|
|
fd (sfd),
|
|
|
|
hash (shash),
|
|
|
|
luid (sluid),
|
|
|
|
sem (ssem)
|
|
|
|
{
|
2007-12-05 16:10:20 +01:00
|
|
|
char name[MAX_PATH];
|
2007-02-20 16:48:04 +01:00
|
|
|
|
2008-04-21 14:46:58 +02:00
|
|
|
__small_sprintf (name, "semaphore/%016X%08x%08x",
|
2007-02-20 16:48:04 +01:00
|
|
|
hash, luid.HighPart, luid.LowPart);
|
|
|
|
this->win32_obj_id = ::CreateSemaphore (&sec_all, value, LONG_MAX, name);
|
|
|
|
if (!this->win32_obj_id)
|
|
|
|
magic = 0;
|
|
|
|
if (GetLastError () == ERROR_ALREADY_EXISTS && (oflag & O_EXCL))
|
|
|
|
{
|
|
|
|
__seterrno ();
|
|
|
|
CloseHandle (this->win32_obj_id);
|
|
|
|
magic = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
semaphores.insert (this);
|
|
|
|
}
|
|
|
|
|
|
|
|
semaphore::~semaphore ()
|
|
|
|
{
|
|
|
|
if (win32_obj_id)
|
|
|
|
CloseHandle (win32_obj_id);
|
|
|
|
|
|
|
|
semaphores.remove (this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
semaphore::_post ()
|
|
|
|
{
|
|
|
|
if (ReleaseSemaphore (win32_obj_id, 1, ¤tvalue))
|
|
|
|
currentvalue++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
semaphore::_getvalue (int *sval)
|
|
|
|
{
|
|
|
|
long val;
|
|
|
|
|
|
|
|
switch (WaitForSingleObject (win32_obj_id, 0))
|
|
|
|
{
|
|
|
|
case WAIT_OBJECT_0:
|
|
|
|
ReleaseSemaphore (win32_obj_id, 1, &val);
|
|
|
|
*sval = val + 1;
|
|
|
|
break;
|
|
|
|
case WAIT_TIMEOUT:
|
|
|
|
*sval = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
set_errno (EAGAIN);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
semaphore::_trywait ()
|
|
|
|
{
|
|
|
|
/* FIXME: signals should be able to interrupt semaphores...
|
|
|
|
We probably need WaitForMultipleObjects here. */
|
|
|
|
if (WaitForSingleObject (win32_obj_id, 0) == WAIT_TIMEOUT)
|
|
|
|
{
|
|
|
|
set_errno (EAGAIN);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
currentvalue--;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
semaphore::_timedwait (const struct timespec *abstime)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
long waitlength;
|
|
|
|
|
|
|
|
myfault efault;
|
|
|
|
if (efault.faulted ())
|
|
|
|
{
|
|
|
|
/* According to SUSv3, abstime need not be checked for validity,
|
|
|
|
if the semaphore can be locked immediately. */
|
|
|
|
if (!_trywait ())
|
|
|
|
return 0;
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
gettimeofday (&tv, NULL);
|
|
|
|
waitlength = abstime->tv_sec * 1000 + abstime->tv_nsec / (1000 * 1000);
|
|
|
|
waitlength -= tv.tv_sec * 1000 + tv.tv_usec / 1000;
|
|
|
|
if (waitlength < 0)
|
|
|
|
waitlength = 0;
|
|
|
|
switch (cancelable_wait (win32_obj_id, waitlength, cw_cancel_self, cw_sig_eintr))
|
|
|
|
{
|
|
|
|
case WAIT_OBJECT_0:
|
|
|
|
currentvalue--;
|
|
|
|
break;
|
|
|
|
case WAIT_SIGNALED:
|
|
|
|
set_errno (EINTR);
|
|
|
|
return -1;
|
|
|
|
case WAIT_TIMEOUT:
|
|
|
|
set_errno (ETIMEDOUT);
|
|
|
|
return -1;
|
|
|
|
default:
|
|
|
|
debug_printf ("cancelable_wait failed. %E");
|
|
|
|
__seterrno ();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
semaphore::_wait ()
|
|
|
|
{
|
|
|
|
switch (cancelable_wait (win32_obj_id, INFINITE, cw_cancel_self, cw_sig_eintr))
|
|
|
|
{
|
|
|
|
case WAIT_OBJECT_0:
|
|
|
|
currentvalue--;
|
|
|
|
break;
|
|
|
|
case WAIT_SIGNALED:
|
|
|
|
set_errno (EINTR);
|
|
|
|
return -1;
|
|
|
|
default:
|
|
|
|
debug_printf ("cancelable_wait failed. %E");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
semaphore::_fixup_after_fork ()
|
|
|
|
{
|
|
|
|
if (shared == PTHREAD_PROCESS_PRIVATE)
|
|
|
|
{
|
|
|
|
debug_printf ("sem %x in _fixup_after_fork", this);
|
|
|
|
/* FIXME: duplicate code here and in the constructor. */
|
|
|
|
this->win32_obj_id = ::CreateSemaphore (&sec_none_nih, currentvalue,
|
|
|
|
LONG_MAX, NULL);
|
|
|
|
if (!win32_obj_id)
|
|
|
|
api_fatal ("failed to create new win32 semaphore, error %d");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
semaphore::_terminate ()
|
|
|
|
{
|
|
|
|
int _sem_close (sem_t *, bool);
|
|
|
|
|
|
|
|
if (sem)
|
|
|
|
_sem_close (sem, false);
|
|
|
|
}
|
|
|
|
|
2002-09-21 01:46:12 +02:00
|
|
|
/* static members */
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
semaphore::init (sem_t *sem, int pshared, unsigned int value)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2002-09-30 03:19:45 +02:00
|
|
|
/* opengroup calls this undefined */
|
2003-03-27 20:52:20 +01:00
|
|
|
if (is_good_object (sem))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EBUSY;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
if (value > SEM_VALUE_MAX)
|
|
|
|
return EINVAL;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
*sem = new semaphore (pshared, value);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (sem))
|
2001-03-21 03:17:58 +01:00
|
|
|
{
|
|
|
|
delete (*sem);
|
|
|
|
*sem = NULL;
|
|
|
|
return EAGAIN;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
semaphore::destroy (sem_t *sem)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (sem))
|
2001-03-21 03:17:58 +01:00
|
|
|
return EINVAL;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2007-02-20 16:48:04 +01:00
|
|
|
/* It's invalid to destroy a semaphore not opened with sem_init. */
|
|
|
|
if ((*sem)->fd != -1)
|
|
|
|
return EINVAL;
|
|
|
|
|
2002-09-30 03:19:45 +02:00
|
|
|
/* FIXME - new feature - test for busy against threads... */
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-03-21 03:17:58 +01:00
|
|
|
delete (*sem);
|
|
|
|
*sem = NULL;
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2007-02-20 16:48:04 +01:00
|
|
|
int
|
|
|
|
semaphore::close (sem_t *sem)
|
|
|
|
{
|
|
|
|
if (!is_good_object (sem))
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
/* It's invalid to close a semaphore not opened with sem_open. */
|
|
|
|
if ((*sem)->fd == -1)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
delete (*sem);
|
|
|
|
delete sem;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-10-27 12:48:29 +01:00
|
|
|
sem_t *
|
2007-02-20 16:48:04 +01:00
|
|
|
semaphore::open (unsigned long long hash, LUID luid, int fd, int oflag,
|
|
|
|
mode_t mode, unsigned int value, bool &wasopen)
|
2003-10-27 12:48:29 +01:00
|
|
|
{
|
|
|
|
if (value > SEM_VALUE_MAX)
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-02-20 16:48:04 +01:00
|
|
|
/* sem_open is supposed to return the same pointer, if the same named
|
|
|
|
semaphore is opened multiple times in the same process, as long as
|
|
|
|
the semaphore hasn't been closed or unlinked in the meantime. */
|
|
|
|
semaphores.mx.lock ();
|
|
|
|
for (semaphore *sema = semaphores.head; sema; sema = sema->next)
|
|
|
|
if (sema->fd >= 0 && sema->hash == hash
|
|
|
|
&& sema->luid.HighPart == luid.HighPart
|
|
|
|
&& sema->luid.LowPart == sema->luid.LowPart)
|
|
|
|
{
|
|
|
|
wasopen = true;
|
|
|
|
semaphores.mx.unlock ();
|
|
|
|
return sema->sem;
|
|
|
|
}
|
|
|
|
semaphores.mx.unlock ();
|
|
|
|
|
|
|
|
wasopen = false;
|
2003-10-27 12:48:29 +01:00
|
|
|
sem_t *sem = new sem_t;
|
|
|
|
if (!sem)
|
|
|
|
{
|
|
|
|
set_errno (ENOMEM);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-02-20 16:48:04 +01:00
|
|
|
*sem = new semaphore (hash, luid, fd, sem, oflag, mode, value);
|
2003-10-27 12:48:29 +01:00
|
|
|
|
|
|
|
if (!is_good_object (sem))
|
|
|
|
{
|
|
|
|
delete *sem;
|
|
|
|
delete sem;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return sem;
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
semaphore::wait (sem_t *sem)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-01-09 21:57:54 +01:00
|
|
|
pthread_testcancel ();
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (sem))
|
2002-02-28 14:50:41 +01:00
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2004-02-24 12:33:15 +01:00
|
|
|
return (*sem)->_wait ();
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
semaphore::trywait (sem_t *sem)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (sem))
|
2002-02-28 14:50:41 +01:00
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
return (*sem)->_trywait ();
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-10-27 12:48:29 +01:00
|
|
|
int
|
|
|
|
semaphore::timedwait (sem_t *sem, const struct timespec *abstime)
|
|
|
|
{
|
|
|
|
if (!is_good_object (sem))
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (*sem)->_timedwait (abstime);
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
int
|
2002-09-21 05:59:58 +02:00
|
|
|
semaphore::post (sem_t *sem)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-03-27 20:52:20 +01:00
|
|
|
if (!is_good_object (sem))
|
2003-10-27 12:48:29 +01:00
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
(*sem)->_post ();
|
2000-02-17 20:38:33 +01:00
|
|
|
return 0;
|
2000-10-17 01:55:58 +02:00
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2003-10-27 12:48:29 +01:00
|
|
|
int
|
|
|
|
semaphore::getvalue (sem_t *sem, int *sval)
|
|
|
|
{
|
2005-07-03 04:40:30 +02:00
|
|
|
myfault efault;
|
|
|
|
if (efault.faulted () || !is_good_object (sem))
|
2003-10-27 12:48:29 +01:00
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (*sem)->_getvalue (sval);
|
|
|
|
}
|
|
|
|
|
2007-02-20 16:48:04 +01:00
|
|
|
int
|
|
|
|
semaphore::getinternal (sem_t *sem, int *sfd, unsigned long long *shash,
|
|
|
|
LUID *sluid, unsigned int *sval)
|
|
|
|
{
|
|
|
|
myfault efault;
|
|
|
|
if (efault.faulted () || !is_good_object (sem))
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if ((*sfd = (*sem)->fd) < 0)
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
*shash = (*sem)->hash;
|
|
|
|
*sluid = (*sem)->luid;
|
|
|
|
/* POSIX defines the value in calls to sem_init/sem_open as unsigned, but
|
|
|
|
the sem_getvalue gets a pointer to int to return the value. Go figure! */
|
|
|
|
return (*sem)->_getvalue ((int *)sval);
|
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
/* pthread_null */
|
2002-09-16 12:53:29 +02:00
|
|
|
pthread *
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::get_null_pthread ()
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
/* because of weird entry points */
|
|
|
|
_instance.magic = 0;
|
|
|
|
return &_instance;
|
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::pthread_null ()
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
2002-11-24 14:54:14 +01:00
|
|
|
attr.joinable = PTHREAD_CREATE_DETACHED;
|
2002-09-16 12:53:29 +02:00
|
|
|
/* Mark ourselves as invalid */
|
|
|
|
magic = 0;
|
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::~pthread_null ()
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-08-05 18:14:41 +02:00
|
|
|
bool
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::create (void *(*)(void *), pthread_attr *, void *)
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
2005-08-05 18:14:41 +02:00
|
|
|
return true;
|
2002-09-16 12:53:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::exit (void *value_ptr)
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
2005-01-29 06:39:07 +01:00
|
|
|
_my_tls.remove (INFINITE);
|
2002-11-24 14:54:14 +01:00
|
|
|
ExitThread (0);
|
2002-09-16 12:53:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::cancel ()
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::testcancel ()
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::setcancelstate (int state, int *oldstate)
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::setcanceltype (int type, int *oldtype)
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::push_cleanup_handler (__pthread_cleanup_handler *handler)
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::pop_cleanup_handler (int const execute)
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
}
|
2003-01-14 21:31:47 +01:00
|
|
|
|
2002-09-16 12:53:29 +02:00
|
|
|
unsigned long
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null::getsequence_np ()
|
2002-09-16 12:53:29 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-27 20:52:20 +01:00
|
|
|
pthread_null pthread_null::_instance;
|