summaryrefslogtreecommitdiffstats
path: root/lib/libc/alpha
diff options
context:
space:
mode:
authorjb <jb@FreeBSD.org>1998-06-09 22:45:39 +0000
committerjb <jb@FreeBSD.org>1998-06-09 22:45:39 +0000
commit2f5fa8684d7ba91208a67a301e4fc1e09d0b3462 (patch)
tree709d6e2d88bbea451896c62e00ff2d254c84b89d /lib/libc/alpha
parent47cdbd2757e413e287c496c03b406a0c543c4cc1 (diff)
downloadFreeBSD-src-2f5fa8684d7ba91208a67a301e4fc1e09d0b3462.zip
FreeBSD-src-2f5fa8684d7ba91208a67a301e4fc1e09d0b3462.tar.gz
Rename when building libc_r.
Diffstat (limited to 'lib/libc/alpha')
-rw-r--r--lib/libc/alpha/sys/fork.S4
-rw-r--r--lib/libc/alpha/sys/pipe.S4
-rw-r--r--lib/libc/alpha/sys/sigprocmask.S4
-rw-r--r--lib/libc/alpha/sys/sigreturn.S2
-rw-r--r--lib/libc/alpha/sys/sigsuspend.S4
5 files changed, 9 insertions, 9 deletions
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)
OpenPOWER on IntegriCloud