From 97a7fcbca386b053faa639492c76437d2449c911 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 7 Nov 1991 11:36:09 +0000 Subject: [PATCH] A few fixes --- mach/sparc/libsys/_pipe.s | 9 ++++++++- mach/sparc/libsys/pipe.s | 8 +++++++- mach/sparc/libsys/unmount.s | 1 + 3 files changed, 16 insertions(+), 2 deletions(-) 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 -- 2.34.1