From 2f5fa8684d7ba91208a67a301e4fc1e09d0b3462 Mon Sep 17 00:00:00 2001 From: jb Date: Tue, 9 Jun 1998 22:45:39 +0000 Subject: Rename when building libc_r. --- lib/libc/alpha/sys/fork.S | 4 ++-- lib/libc/alpha/sys/pipe.S | 4 ++-- lib/libc/alpha/sys/sigprocmask.S | 4 ++-- lib/libc/alpha/sys/sigreturn.S | 2 +- lib/libc/alpha/sys/sigsuspend.S | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) (limited to 'lib/libc/alpha') diff --git a/lib/libc/alpha/sys/fork.S b/lib/libc/alpha/sys/fork.S index 17ef463..a8fa754 100644 --- a/lib/libc/alpha/sys/fork.S +++ b/lib/libc/alpha/sys/fork.S @@ -29,7 +29,7 @@ #include "SYS.h" -SYSCALL(fork) +PSYSCALL(fork) cmovne a4, zero, v0 /* a4 (rv[1]) != 0, child */ RET -END(fork) +PEND(fork) diff --git a/lib/libc/alpha/sys/pipe.S b/lib/libc/alpha/sys/pipe.S index 973529c..76f44c2 100644 --- a/lib/libc/alpha/sys/pipe.S +++ b/lib/libc/alpha/sys/pipe.S @@ -29,9 +29,9 @@ #include "SYS.h" -SYSCALL(pipe) +PSYSCALL(pipe) stl v0, 0(a0) stl a4, 4(a0) mov zero, v0 RET -END(pipe) +PEND(pipe) diff --git a/lib/libc/alpha/sys/sigprocmask.S b/lib/libc/alpha/sys/sigprocmask.S index 0371e63..2899b0f 100644 --- a/lib/libc/alpha/sys/sigprocmask.S +++ b/lib/libc/alpha/sys/sigprocmask.S @@ -29,7 +29,7 @@ #include "SYS.h" -LEAF(sigprocmask, 3) +PLEAF(sigprocmask, 3) mov a2, a5 /* safe */ cmoveq a1, 1, a0 /* if set == NULL, how = SIG_BLOCK */ beq a1, Ldoit /* and set = 0, and do it. */ @@ -40,5 +40,5 @@ Ldoit: CALLSYS_ERROR(sigprocmask) Lret: mov zero, v0 RET - END(sigprocmask) + PEND(sigprocmask) diff --git a/lib/libc/alpha/sys/sigreturn.S b/lib/libc/alpha/sys/sigreturn.S index c22abc2..a186be6 100644 --- a/lib/libc/alpha/sys/sigreturn.S +++ b/lib/libc/alpha/sys/sigreturn.S @@ -35,4 +35,4 @@ * (XXX PROFILING) */ -RSYSCALL(sigreturn) +PRSYSCALL(sigreturn) diff --git a/lib/libc/alpha/sys/sigsuspend.S b/lib/libc/alpha/sys/sigsuspend.S index d722672..b351001 100644 --- a/lib/libc/alpha/sys/sigsuspend.S +++ b/lib/libc/alpha/sys/sigsuspend.S @@ -29,9 +29,9 @@ #include "SYS.h" -LEAF(sigsuspend, 1) +PLEAF(sigsuspend, 1) ldl a0, 0(a0) /* pass *mask instead of mask */ CALLSYS_ERROR(sigsuspend) mov zero, v0 /* shouldn't need; just in case... */ RET -END(sigsuspend) +PEND(sigsuspend) -- cgit v1.1