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/conddefaultattributes.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 cpukit/posix/src/conddefaultattributes.c (limited to 'cpukit/posix/src/conddefaultattributes.c') diff --git a/cpukit/posix/src/conddefaultattributes.c b/cpukit/posix/src/conddefaultattributes.c new file mode 100644 index 0000000000..a45b96f3c8 --- /dev/null +++ b/cpukit/posix/src/conddefaultattributes.c @@ -0,0 +1,24 @@ +/* + * $Id$ + */ + +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +/*PAGE + * + * The default condition variable attributes structure. + */ + +const pthread_condattr_t _POSIX_Condition_variables_Default_attributes = { + TRUE, /* is_initialized */ + PTHREAD_PROCESS_PRIVATE /* process_shared */ +}; -- cgit v1.2.3