summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/cond.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/include/rtems/posix/cond.h')
-rw-r--r--cpukit/posix/include/rtems/posix/cond.h32
1 files changed, 17 insertions, 15 deletions
diff --git a/cpukit/posix/include/rtems/posix/cond.h b/cpukit/posix/include/rtems/posix/cond.h
index 93b5b4cf2a..8ff34e0ce6 100644
--- a/cpukit/posix/include/rtems/posix/cond.h
+++ b/cpukit/posix/include/rtems/posix/cond.h
@@ -1,5 +1,7 @@
/**
- * @file rtems/posix/cond.h
+ * @file
+ *
+ * @brief POSIX Condition Variables Private Support
*
* This include file contains all the private support information for
* POSIX condition variables.
@@ -18,11 +20,12 @@
#define _RTEMS_POSIX_COND_H
/**
- * @defgroup POSIX_COND_VARS Condition Variables
+ * @defgroup POSIX_COND_VARS POSIX Condition Variables
*
- * @ingroup POSIX
+ * @ingroup POSIXAPI
+ *
*/
-/**@{*/
+/**@{**/
#ifdef __cplusplus
extern "C" {
#endif
@@ -132,24 +135,21 @@ RTEMS_INLINE_ROUTINE bool _POSIX_Condition_variables_Is_null (
POSIX_Condition_variables_Control *the_condition_variable
);
-/*
- * @brief Implements wake up version of the "signal" operation
- *
- * _POSIX_Condition_variables_Signal_support
- *
- * DESCRIPTION:
+/**
+ * @brief Implements wake up version of the "signal" operation.
+ *
+ * DESCRIPTION:
*
- * A support routine which implements guts of the broadcast and single task
- * wake up version of the "signal" operation.
+ * A support routine which implements guts of the broadcast and single task
+ * wake up version of the "signal" operation.
*/
-
int _POSIX_Condition_variables_Signal_support(
pthread_cond_t *cond,
bool is_broadcast
);
/**
- * @brief POSIX Condition Variables Wait Support
+ * @brief POSIX condition variables wait support.
*
* DESCRIPTION:
*
@@ -180,9 +180,11 @@ POSIX_Condition_variables_Control *_POSIX_Condition_variables_Get (
#include <rtems/posix/cond.inl>
+/** @} */
+
#ifdef __cplusplus
}
#endif
-/**@}*/
+
#endif
/* end of include file */