summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-15 18:56:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-15 18:56:09 +0000
commit57dae5622559f07d82d0cae680e7c3bb10dbc74d (patch)
treef3334de9aeae16b49af3ca782c2eae1c6f810753 /cpukit/posix/include/rtems
parentpthread_kill: fixed the move of SIG_IGN not SA_SIGINFO (diff)
downloadrtems-57dae5622559f07d82d0cae680e7c3bb10dbc74d.tar.bz2
added constant to indicate there is no mutex associated with this
condition variable
Diffstat (limited to 'cpukit/posix/include/rtems')
-rw-r--r--cpukit/posix/include/rtems/posix/cond.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpukit/posix/include/rtems/posix/cond.h b/cpukit/posix/include/rtems/posix/cond.h
index 5533aff455..785ca33ae7 100644
--- a/cpukit/posix/include/rtems/posix/cond.h
+++ b/cpukit/posix/include/rtems/posix/cond.h
@@ -25,6 +25,13 @@ extern "C" {
#include <rtems/score/threadq.h>
/*
+ * Constant to indicate condition variable does not currently have
+ * a mutex assigned to it.
+ */
+
+#define POSIX_CONDITION_VARIABLES_NO_MUTEX 0
+
+/*
* Data Structure used to manage a POSIX condition variable
*/