From owner-freebsd-commit Mon Jan 1 02:28:43 1996 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA16454 for freebsd-commit-outgoing; Mon, 1 Jan 1996 02:28:43 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA16444 for cvs-all-outgoing; Mon, 1 Jan 1996 02:28:37 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA16434 for cvs-sys-outgoing; Mon, 1 Jan 1996 02:28:32 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA16425 Mon, 1 Jan 1996 02:28:27 -0800 (PST) Date: Mon, 1 Jan 1996 02:28:27 -0800 (PST) From: Peter Wemm Message-Id: <199601011028.CAA16425@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/kern uipc_syscalls.c Sender: owner-commit@FreeBSD.ORG Precedence: bulk peter 96/01/01 02:28:25 Modified: sys/kern uipc_syscalls.c Log: Make pipe() return a set of bidirectional pipe fd's rather than one-way only just like on SVR4. This has no effect on any current programs in our source, but makes the use of SVR4 code a little easier. There is no code or implementation cost in the kernel.. This two-line change merely sets the modes on the ends of the pipes to be bidirectional. There are no other changes. Revision Changes Path 1.11 +3 -3 src/sys/kern/uipc_syscalls.c