2016-01-04 16:05:18 +00:00
|
|
|
/* Copyright (C) 1992-2016 Free Software Foundation, Inc.
|
1997-06-26 22:16:52 +00:00
|
|
|
This file is part of the GNU C Library.
|
1993-08-26 23:30:59 +00:00
|
|
|
Contributed by Brendan Kehoe (brendan@zen.org).
|
|
|
|
|
1997-06-26 22:16:52 +00:00
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1993-08-26 23:30:59 +00:00
|
|
|
|
1997-06-26 22:16:52 +00:00
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1993-08-26 23:30:59 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1993-08-26 23:30:59 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
|
|
|
|
|
|
|
SYSCALL__ (pipe, 1)
|
|
|
|
/* Plop in the two descriptors. */
|
|
|
|
sw v0, 0(a0)
|
|
|
|
sw v1, 4(a0)
|
|
|
|
|
|
|
|
/* Go out with a clean status. */
|
|
|
|
move v0, zero
|
2000-04-13 19:46:02 +00:00
|
|
|
j ra
|
2003-01-11 15:26:35 +00:00
|
|
|
PSEUDO_END(__pipe)
|
1995-01-21 15:40:54 +00:00
|
|
|
|
2002-08-03 06:57:53 +00:00
|
|
|
libc_hidden_def (__pipe)
|
1995-01-21 15:40:54 +00:00
|
|
|
weak_alias (__pipe, pipe)
|