Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/klibc/arch/mips/pipe.S

Parent Directory Parent Directory | Revision Log Revision Log


Revision 815 - (show annotations) (download)
Fri Apr 24 18:32:46 2009 UTC (15 years, 1 month ago) by niro
File size: 192 byte(s)
-updated to klibc-1.5.15
1 #include <machine/asm.h>
2 #include <asm/unistd.h>
3
4 LEAF(pipe)
5 li v0, __NR_pipe
6 syscall
7 bnez a3, 1f
8 sw v0, (a0)
9 sw v1, 4(a0)
10 li v0, 0
11 b 2f
12 1: sw v0, errno
13 li v0, -1
14 2: jr ra
15 END(pipe)