From 98dca75bf3c7cd6692349b6a9e4f66430d90e779 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 2 Nov 1999 18:25:26 +0000 Subject: Split condition variables into multiple files. --- cpukit/posix/src/condwait.c | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 cpukit/posix/src/condwait.c (limited to 'cpukit/posix/src/condwait.c') diff --git a/cpukit/posix/src/condwait.c b/cpukit/posix/src/condwait.c new file mode 100644 index 0000000000..74bc0fba0f --- /dev/null +++ b/cpukit/posix/src/condwait.c @@ -0,0 +1,32 @@ +/* + * $Id$ + */ + +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +/*PAGE + * + * 11.4.4 Waiting on a Condition, P1003.1c/Draft 10, p. 105 + */ + +int pthread_cond_wait( + pthread_cond_t *cond, + pthread_mutex_t *mutex +) +{ + return _POSIX_Condition_variables_Wait_support( + cond, + mutex, + THREAD_QUEUE_WAIT_FOREVER, + FALSE + ); +} -- cgit v1.2.3