xref: /titanic_44/usr/src/lib/libc/common/sys/pipe2.s (revision 5dbfd19ad5fcc2b779f40f80fa05c1bd28fd0b4e)
1*5dbfd19aSTheo Schlossnagle/*
2*5dbfd19aSTheo Schlossnagle * CDDL HEADER START
3*5dbfd19aSTheo Schlossnagle *
4*5dbfd19aSTheo Schlossnagle * The contents of this file are subject to the terms of the
5*5dbfd19aSTheo Schlossnagle * Common Development and Distribution License (the "License").
6*5dbfd19aSTheo Schlossnagle * You may not use this file except in compliance with the License.
7*5dbfd19aSTheo Schlossnagle *
8*5dbfd19aSTheo Schlossnagle * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*5dbfd19aSTheo Schlossnagle * or http://www.opensolaris.org/os/licensing.
10*5dbfd19aSTheo Schlossnagle * See the License for the specific language governing permissions
11*5dbfd19aSTheo Schlossnagle * and limitations under the License.
12*5dbfd19aSTheo Schlossnagle *
13*5dbfd19aSTheo Schlossnagle * When distributing Covered Code, include this CDDL HEADER in each
14*5dbfd19aSTheo Schlossnagle * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*5dbfd19aSTheo Schlossnagle * If applicable, add the following below this CDDL HEADER, with the
16*5dbfd19aSTheo Schlossnagle * fields enclosed by brackets "[]" replaced with your own identifying
17*5dbfd19aSTheo Schlossnagle * information: Portions Copyright [yyyy] [name of copyright owner]
18*5dbfd19aSTheo Schlossnagle *
19*5dbfd19aSTheo Schlossnagle * CDDL HEADER END
20*5dbfd19aSTheo Schlossnagle */
21*5dbfd19aSTheo Schlossnagle
22*5dbfd19aSTheo Schlossnagle/* Copyright 2013 OmniTI Computer Consulting, Inc. All rights reserved. */
23*5dbfd19aSTheo Schlossnagle
24*5dbfd19aSTheo Schlossnagle/* int pipe2 (int *fds, int flags)                              */
25*5dbfd19aSTheo Schlossnagle
26*5dbfd19aSTheo Schlossnagle#include "SYS.h"
27*5dbfd19aSTheo Schlossnagle
28*5dbfd19aSTheo Schlossnagle	.file   "pipe2.s"
29*5dbfd19aSTheo Schlossnagle
30*5dbfd19aSTheo Schlossnagle	SYSCALL2(pipe2,pipe);
31*5dbfd19aSTheo Schlossnagle	RET
32*5dbfd19aSTheo Schlossnagle	SET_SIZE(pipe2)
33