summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/pipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/pipe.c')
-rw-r--r--cpukit/libcsupport/src/pipe.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/pipe.c b/cpukit/libcsupport/src/pipe.c
index 97f2bd4b65..21d3205cf1 100644
--- a/cpukit/libcsupport/src/pipe.c
+++ b/cpukit/libcsupport/src/pipe.c
@@ -1,6 +1,11 @@
-/*
- * pipe() - POSIX 1003.1b 6.1.1 Create an Inter-Process Channel
+/**
+ * @file
*
+ * @brief Create an Inter-Process Channel
+ * @ingroup libcsupport
+ */
+
+/*
* COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
*
@@ -20,6 +25,9 @@
#include <rtems/seterr.h>
#include <rtems/pipe.h>
+/**
+ * POSIX 1003.1b 6.1.1 Create an Inter-Process Channel
+ */
int pipe(
int filsdes[2]
)