aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/alpha
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-06-09 22:45:39 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-06-09 22:45:39 +0000
commit9e0370f74213bfa41cf3ea814159396f8d98efa3 (patch)
tree0196153cb5eba44a0dc141af1834616ce74c1cad /lib/libc/alpha
parent929140ffab60e0b720588e40f7158923f8b9345e (diff)
downloadsrc-9e0370f74213bfa41cf3ea814159396f8d98efa3.tar.gz
src-9e0370f74213bfa41cf3ea814159396f8d98efa3.zip
Rename when building libc_r.
Notes
Notes: svn path=/head/; revision=36822
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 17ef463a0eff..a8fa754a0bc8 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 973529c574a9..76f44c242f21 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 0371e63be54e..2899b0f79311 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 c22abc2c4166..a186be6a74bc 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 d722672ea4c3..b351001da75f 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)