From 541889069b51d71a7872ac7df81a5f9ff2c97910 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 13 Sep 2018 06:22:21 +0200 Subject: Remove superfluous pipe_create() --- cpukit/libcsupport/Makefile.am | 2 +- cpukit/libcsupport/src/pipe.c | 39 --------------------------------------- 2 files changed, 1 insertion(+), 40 deletions(-) delete mode 100644 cpukit/libcsupport/src/pipe.c (limited to 'cpukit/libcsupport') diff --git a/cpukit/libcsupport/Makefile.am b/cpukit/libcsupport/Makefile.am index aaf3f5bd2b..e59dfd586b 100644 --- a/cpukit/libcsupport/Makefile.am +++ b/cpukit/libcsupport/Makefile.am @@ -40,7 +40,7 @@ SYSTEM_CALL_C_FILES = src/open.c src/close.c src/read.c src/write.c \ src/chdir.c src/chmod.c src/fchdir.c src/fchmod.c src/fchown.c src/chown.c \ src/link.c src/unlink.c src/umask.c src/ftruncate.c src/utime.c src/fstat.c \ src/fcntl.c src/fpathconf.c src/getdents.c src/fsync.c src/fdatasync.c \ - src/pipe.c src/dup.c src/dup2.c src/symlink.c src/readlink.c \ + src/dup.c src/dup2.c src/symlink.c src/readlink.c \ src/chroot.c src/sync.c src/_rename_r.c src/statvfs.c src/utimes.c src/lchown.c SYSTEM_CALL_C_FILES += src/clock.c 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 - -#include -#include -#include -#include - -/** - * 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); -} -- cgit v1.2.3