NetBSD/lib/libc/arch/powerpc/SYS.h

39 lines
813 B
C
Raw Normal View History

1998-05-25 19:37:20 +04:00
/* $NetBSD: SYS.h,v 1.6 1998/05/25 15:37:20 ws Exp $ */
#include <machine/asm.h>
#include <sys/syscall.h>
#ifdef __STDC__
1998-02-03 22:33:58 +03:00
#define _DOSYSCALL(x) li 0,(SYS_ ## x) ;\
sc
1998-02-03 22:33:58 +03:00
#else
#define _DOSYSCALL(x) li 0,(SYS_/**/x) ;\
sc
#endif /* __STDC__ */
1998-02-03 22:33:58 +03:00
#define _SYSCALL_NOERROR(x,y) .text ;\
.align 2 ;\
ENTRY(x) ;\
_DOSYSCALL(y)
#define _SYSCALL(x,y) .text ;\
.align 2 ;\
1998-05-25 19:37:20 +04:00
2: b PIC_PLT(_ASM_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 ;\
1998-05-25 19:37:20 +04:00
b PIC_PLT(_ASM_LABEL(cerror))
#define RSYSCALL_NOERROR(x) PSEUDO_NOERROR(x,x)
#define RSYSCALL(x) PSEUDO(x,x)