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/condattrsetpshared.c | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 cpukit/posix/src/condattrsetpshared.c (limited to 'cpukit/posix/src/condattrsetpshared.c') diff --git a/cpukit/posix/src/condattrsetpshared.c b/cpukit/posix/src/condattrsetpshared.c new file mode 100644 index 0000000000..6c5b0e5301 --- /dev/null +++ b/cpukit/posix/src/condattrsetpshared.c @@ -0,0 +1,39 @@ +/* + * $Id$ + */ + +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +/*PAGE + * + * 11.4.1 Condition Variable Initialization Attributes, + * P1003.1c/Draft 10, p. 96 + */ + +int pthread_condattr_setpshared( + pthread_condattr_t *attr, + int pshared +) +{ + if ( !attr ) + return EINVAL; + + switch ( pshared ) { + case PTHREAD_PROCESS_SHARED: + case PTHREAD_PROCESS_PRIVATE: + attr->process_shared = pshared; + return 0; + + default: + return EINVAL; + } +} -- cgit v1.2.3