summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/seterr.h
diff options
context:
space:
mode:
authorMathew Kallada <matkallada@gmail.com>2013-01-04 09:01:21 -0600
committerJennifer Averett <jennifer.averett@oarcorp.com>2013-01-04 09:01:21 -0600
commita1f9934a8f096489620362620ef610b52a3c4ae1 (patch)
tree8900752d54ec06326cfde1b783c2fc5ecb593170 /cpukit/score/include/rtems/seterr.h
parentscore: Doxygen Clean Up Task #9 (diff)
downloadrtems-a1f9934a8f096489620362620ef610b52a3c4ae1.tar.bz2
score: Doxygen Clean Up Task #3
Diffstat (limited to 'cpukit/score/include/rtems/seterr.h')
-rw-r--r--cpukit/score/include/rtems/seterr.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/cpukit/score/include/rtems/seterr.h b/cpukit/score/include/rtems/seterr.h
index ddd5c1c685..49830191d5 100644
--- a/cpukit/score/include/rtems/seterr.h
+++ b/cpukit/score/include/rtems/seterr.h
@@ -1,6 +1,8 @@
/**
* @file rtems/seterr.h
*
+ * @brief Data which Ease the Burden of Consistently Setting Errno
+ *
* This file contains macros and definitions which ease the burden
* of consistently setting errno and returning -1.
*/
@@ -17,6 +19,14 @@
#ifndef _RTEMS_SETERR_H
#define _RTEMS_SETERR_H
+/**
+ * @defgroup ScoreSetErr Set Errno
+ *
+ * @ingroup Score
+ *
+ */
+/**@{*/
+
#include <errno.h>
/**
@@ -41,5 +51,6 @@
#define rtems_set_errno_and_return_minus_one_cast( _error, _cast ) \
do { errno = (_error); return (_cast) -1; } while(0)
+/**@}*/
#endif
-/* end of include file */
+/* end of include file */ \ No newline at end of file