summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/pipe.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-09-13 06:22:21 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-10-04 08:02:28 +0200
commit541889069b51d71a7872ac7df81a5f9ff2c97910 (patch)
tree1d021c934efef994d6df2e304800d14a8900c357 /cpukit/libcsupport/src/pipe.c
parentRename files to make them unique within cpukit (diff)
downloadrtems-541889069b51d71a7872ac7df81a5f9ff2c97910.tar.bz2
Remove superfluous pipe_create()
Diffstat (limited to 'cpukit/libcsupport/src/pipe.c')
-rw-r--r--cpukit/libcsupport/src/pipe.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/cpukit/libcsupport/src/pipe.c b/cpukit/libcsupport/src/pipe.c
deleted file mode 100644
index ea0771afa6..0000000000
--- a/cpukit/libcsupport/src/pipe.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/**
- * @file
- *
- * @brief Create an Inter-Process Channel
- * @ingroup libcsupport
- */
-
-/*
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <unistd.h>
-
-#include <errno.h>
-#include <sys/types.h>
-#include <rtems/seterr.h>
-#include <rtems/pipe.h>
-
-/**
- * POSIX 1003.1b 6.1.1 Create an Inter-Process Channel
- */
-int pipe(
- int filsdes[2]
-)
-{
- if (filsdes == NULL)
- rtems_set_errno_and_return_minus_one( EFAULT );
-
- return pipe_create(filsdes);
-}