summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/inline/rtems/rtems/options.inl
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/inline/rtems/rtems/options.inl')
-rw-r--r--cpukit/rtems/inline/rtems/rtems/options.inl32
1 files changed, 15 insertions, 17 deletions
diff --git a/cpukit/rtems/inline/rtems/rtems/options.inl b/cpukit/rtems/inline/rtems/rtems/options.inl
index 1aa5ba6e0d..7bc10de9ca 100644
--- a/cpukit/rtems/inline/rtems/rtems/options.inl
+++ b/cpukit/rtems/inline/rtems/rtems/options.inl
@@ -1,12 +1,11 @@
/**
* @file rtems/rtems/options.inl
- */
-
-/*
+ *
* This file contains the static inline implementation of the inlined
* routines from the Options Handler.
- *
- * COPYRIGHT (c) 1989-1999.
+ */
+
+/* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -19,16 +18,17 @@
#ifndef _RTEMS_RTEMS_OPTIONS_INL
#define _RTEMS_RTEMS_OPTIONS_INL
-/*PAGE
- *
- * _Options_Is_no_wait
- *
- * DESCRIPTION:
+/**
+ * @addtogroup ClassicOptions
+ * @{
+ */
+
+/**
+ * @brief Options_Is_no_wait
*
* This function returns TRUE if the RTEMS_NO_WAIT option is enabled in
* option_set, and FALSE otherwise.
*/
-
RTEMS_INLINE_ROUTINE boolean _Options_Is_no_wait (
rtems_option option_set
)
@@ -36,16 +36,12 @@ RTEMS_INLINE_ROUTINE boolean _Options_Is_no_wait (
return (option_set & RTEMS_NO_WAIT);
}
-/*PAGE
- *
- * _Options_Is_any
- *
- * DESCRIPTION:
+/**
+ * @brief Options_Is_any
*
* This function returns TRUE if the RTEMS_EVENT_ANY option is enabled in
* OPTION_SET, and FALSE otherwise.
*/
-
RTEMS_INLINE_ROUTINE boolean _Options_Is_any (
rtems_option option_set
)
@@ -53,5 +49,7 @@ RTEMS_INLINE_ROUTINE boolean _Options_Is_any (
return (option_set & RTEMS_EVENT_ANY);
}
+/**@}*/
+
#endif
/* end of include file */