summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/cond.h
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2013-01-07 08:53:43 -0600
committerJennifer Averett <jennifer.averett@oarcorp.com>2013-01-07 08:53:43 -0600
commitcf301c96061bf0eedc327abdc7851216c37112c5 (patch)
tree16614a66d4cff9b614f4e5c530fd85ca2ad8f3a8 /cpukit/posix/include/rtems/posix/cond.h
parentscore: Doxygen Clean Up Task #11 (diff)
downloadrtems-cf301c96061bf0eedc327abdc7851216c37112c5.tar.bz2
posix: Doxygen Clean Up Task #1
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..5fdc1a1a31 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 POSIX
+ *
+ * @{
*/
-/**@{*/
#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 */