Rename when building libc_r.

This commit is contained in:
John Birrell 1998-06-09 22:45:39 +00:00
parent 929140ffab
commit 9e0370f742
5 changed files with 9 additions and 9 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -35,4 +35,4 @@
* (XXX PROFILING)
*/
RSYSCALL(sigreturn)
PRSYSCALL(sigreturn)

View File

@ -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)