6348b7d5b5
_ASM_LABEL(cerror) and _ASM_LABEL(curbrk) to _C_LABEL(__cerror) and _C_LABEL(__curbrk) (or their respective architecture-specific equivalents) to avoid possible name clashes with identifiers used in user applications. * Do the same for minbrk on all architectures to avoid a GCC-specific (and on ELF architectures effectively useless) symbol reference renaming in MI code.
39 lines
817 B
C
39 lines
817 B
C
/* $NetBSD: SYS.h,v 1.7 1999/01/14 22:48:21 kleink Exp $ */
|
|
|
|
#include <machine/asm.h>
|
|
#include <sys/syscall.h>
|
|
|
|
#ifdef __STDC__
|
|
#define _DOSYSCALL(x) li 0,(SYS_ ## x) ;\
|
|
sc
|
|
#else
|
|
#define _DOSYSCALL(x) li 0,(SYS_/**/x) ;\
|
|
sc
|
|
#endif /* __STDC__ */
|
|
|
|
#define _SYSCALL_NOERROR(x,y) .text ;\
|
|
.align 2 ;\
|
|
ENTRY(x) ;\
|
|
_DOSYSCALL(y)
|
|
|
|
#define _SYSCALL(x,y) .text ;\
|
|
.align 2 ;\
|
|
2: b PIC_PLT(_C_LABEL(__cerror));\
|
|
_SYSCALL_NOERROR(x,y) ;\
|
|
bso 2b
|
|
|
|
#define SYSCALL_NOERROR(x) _SYSCALL_NOERROR(x,x)
|
|
|
|
#define SYSCALL(x) _SYSCALL(x,x)
|
|
|
|
#define PSEUDO_NOERROR(x,y) _SYSCALL_NOERROR(x,y) ;\
|
|
blr
|
|
|
|
#define PSEUDO(x,y) _SYSCALL_NOERROR(x,y) ;\
|
|
bnslr ;\
|
|
b PIC_PLT(_C_LABEL(__cerror))
|
|
|
|
#define RSYSCALL_NOERROR(x) PSEUDO_NOERROR(x,x)
|
|
|
|
#define RSYSCALL(x) PSEUDO(x,x)
|