1 1.6.4.1 tron /* $NetBSD: pipe.S,v 1.6.4.1 2004/07/23 13:55:41 tron Exp $ */ 2 1.1 thorpej 3 1.1 thorpej #include "SYS.h" 4 1.1 thorpej 5 1.6 kleink #ifdef WEAK_ALIAS 6 1.6 kleink WEAK_ALIAS(pipe, _pipe) 7 1.6 kleink #endif 8 1.6 kleink 9 1.6 kleink ENTRY(_pipe) 10 1.6.4.1 tron mr %r5,%r3 # save pointer 11 1.6.4.1 tron li %r0,SYS_pipe 12 1.1 thorpej sc # assume, that r5 is kept 13 1.1 thorpej bso 1f 14 1.6.4.1 tron stw %r3,0(%r5) # success, store fds 15 1.6.4.1 tron stw %r4,4(%r5) 16 1.6.4.1 tron li %r3,0 17 1.1 thorpej blr # and return 0 18 1.1 thorpej 1: 19 1.5 kleink b PIC_PLT(_C_LABEL(__cerror)) 20