From: ceriel Date: Thu, 7 Nov 1991 11:36:09 +0000 (+0000) Subject: A few fixes X-Git-Tag: release-5-5~653 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=97a7fcbca386b053faa639492c76437d2449c911;p=ack.git A few fixes --- diff --git a/mach/sparc/libsys/_pipe.s b/mach/sparc/libsys/_pipe.s index a7807a80b..ad6cc57f0 100644 --- a/mach/sparc/libsys/_pipe.s +++ b/mach/sparc/libsys/_pipe.s @@ -1,3 +1,10 @@ #include "SYS.h" -_SYS_call_1(pipe) +LABEL__(pipe); ENTRY1 +LABEL(pipe) + mov %o0,%o2 + BODY1(pipe) + st %o0,[%o2] + st %o1,[%o2+4] + retl + clr %o0 diff --git a/mach/sparc/libsys/pipe.s b/mach/sparc/libsys/pipe.s index eb5caa028..86620c11f 100644 --- a/mach/sparc/libsys/pipe.s +++ b/mach/sparc/libsys/pipe.s @@ -1,3 +1,9 @@ #include "SYS.h" -SYS_call_1(pipe) +LABEL_(pipe); ENTRY1; + mov %o0,%o2 + BODY1(pipe) + st %o0,[%o2] + st %o1,[%o2+4] + retl + clr %o0 diff --git a/mach/sparc/libsys/unmount.s b/mach/sparc/libsys/unmount.s index 43c3c9211..1749ea77f 100644 --- a/mach/sparc/libsys/unmount.s +++ b/mach/sparc/libsys/unmount.s @@ -6,3 +6,4 @@ SYS_call_1(umount) _unmount: b _umount + nop