diff options
author | Christopher Faylor <me@cgf.cx> | 2001-03-17 01:14:58 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-03-17 01:14:58 +0000 |
commit | 5ccbf4b6998788d90b317b2c27f93efc2eca1516 (patch) | |
tree | 464959f9a7111b7931514d9129c292f5cb5a231d /winsup/cygwin/cygwin.din | |
parent | 8308bf58f71b692b85944f5ec8a58168779a142c (diff) | |
download | cygnal-5ccbf4b6998788d90b317b2c27f93efc2eca1516.tar.gz cygnal-5ccbf4b6998788d90b317b2c27f93efc2eca1516.tar.bz2 cygnal-5ccbf4b6998788d90b317b2c27f93efc2eca1516.zip |
* cygwin.din: Export the new functions.
* pthread.cc (pthread_cond_*): Add wrapper functions that call __pthread_cond*
functions.
* thread.cc (__pthread_cond_*): Implement the pthread_cond* functions.
* thread.h: Add new class entries and prototypes for __pthread_cond* functions.
* include/pthread.h: user land header prototypes for pthread_cond* functions
and related defines.
Diffstat (limited to 'winsup/cygwin/cygwin.din')
-rw-r--r-- | winsup/cygwin/cygwin.din | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din index fb6364c3d..a5ff772cd 100644 --- a/winsup/cygwin/cygwin.din +++ b/winsup/cygwin/cygwin.din @@ -1099,6 +1099,16 @@ cygwin32_internal = cygwin_internal @PTH_ALLOW@pthread_mutex_trylock @PTH_ALLOW@pthread_mutex_unlock @PTH_ALLOW@pthread_mutex_destroy +@PTH_ALLOW@pthread_cond_init +@PTH_ALLOW@pthread_cond_destroy +@PTH_ALLOW@pthread_cond_broadcast +@PTH_ALLOW@pthread_cond_signal +@PTH_ALLOW@pthread_cond_wait +@PTH_ALLOW@pthread_cond_timedwait +@PTH_ALLOW@pthread_condattr_init +@PTH_ALLOW@pthread_condattr_destroy +@PTH_ALLOW@pthread_condattr_getpshared +@PTH_ALLOW@pthread_condattr_setpshared @PTH_ALLOW@sem_init @PTH_ALLOW@sem_destroy @PTH_ALLOW@sem_wait |