added constant to indicate there is no mutex associated with this

condition variable
This commit is contained in:
Joel Sherrill
1996-08-15 18:56:09 +00:00
parent de45ddc655
commit 57dae56225
3 changed files with 21 additions and 0 deletions

View File

@@ -24,6 +24,13 @@ extern "C" {
#include <rtems/score/object.h> #include <rtems/score/object.h>
#include <rtems/score/threadq.h> #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 * Data Structure used to manage a POSIX condition variable
*/ */

View File

@@ -24,6 +24,13 @@ extern "C" {
#include <rtems/score/object.h> #include <rtems/score/object.h>
#include <rtems/score/threadq.h> #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 * Data Structure used to manage a POSIX condition variable
*/ */

View File

@@ -24,6 +24,13 @@ extern "C" {
#include <rtems/score/object.h> #include <rtems/score/object.h>
#include <rtems/score/threadq.h> #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 * Data Structure used to manage a POSIX condition variable
*/ */