1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#include <syscall.h>
#include <signal.h>
#include <errno.h>
extern void ___sig_restore();
extern void ___masksig_restore();
#ifdef PTHREAD_KERNEL
#pragma weak machdep_sys_sigaction = __machdep_sys_sigaction
int
__machdep_sys_sigaction (int sig, struct sigaction *new, struct sigaction *old)
{
if (new)
{
if (new->sa_flags & SA_NOMASK)
new->sa_restorer = ___sig_restore;
else
new->sa_restorer = ___masksig_restore;
}
__asm__ ("movel %1,%/d0\n\t"
"movel %2,%/d1\n\t"
"movel %3,%/d2\n\t"
"movel %4,%/d3\n\t"
"trap #0\n\t"
"movel %/d0,%0"
: "=g" (sig)
: "i" (SYS_sigaction), "g" (sig), "g" (new), "g" (old)
: "%d0", "%d1", "%d2", "%d3");
return sig;
}
#else /* PTHREAD_KERNEL */
#ifdef _POSIX_THREADS
#pragma weak __sigaction
#endif
int
__sigaction(int sig,struct sigaction * new, struct sigaction * old)
{
if (new) {
if (new->sa_flags & SA_NOMASK)
new->sa_restorer=___sig_restore;
else
new->sa_restorer=___masksig_restore;
}
__asm__("movel %1,%/d0\n\t"
"movel %2,%/d1\n\t"
"movel %3,%/d2\n\t"
"movel %4,%/d3\n\t"
"trap #0\n\t"
"movel %/d0,%0"
: "=g" (sig)
:"i" (SYS_sigaction), "g" (sig), "g" (new), "g" (old)
: "%d0", "%d1", "%d2", "%d3");
if (sig>=0)
return 0;
errno = -sig;
return -1;
}
#include <gnu-stabs.h>
#ifdef weak_alias
weak_alias (__sigaction, sigaction);
#endif
#endif /* PTHREAD_KERNEL */
|