Home | History | Annotate | Download | only in arch-mips

Lines Matching refs:REAL

326      * Mapping lower 32 Real Time signals to identical Native signal numbers.
470 * Mapping lower 32 Real Time signals to identical Portable signal numbers.
479 * Mapping upper 63 Native Real Time signals to the last Portable signal number.
489 ALOGE("%s: Mapping highest 63 Real Time Signals to the largest RT Portable SigNo.",
748 extern __sighandler_t REAL(bsd_signal)(int, __sighandler_t);
756 rv = do_signal_portable(portable_signum, handler, REAL(bsd_signal));
765 extern __sighandler_t REAL(sysv_signal)(int, __sighandler_t);
773 rv = do_signal_portable(portable_signum, handler, REAL(sysv_signal));
790 extern __sighandler_t REAL(bsd_signal)(int, __sighandler_t);
798 rv = do_signal_portable(portable_signum, handler, REAL(bsd_signal));
837 extern int REAL(killpg)(int pgrp, int sig);
844 rv = do_kill(pgrp, portable_signum, REAL(killpg));
853 extern int REAL(kill)(pid_t, int);
860 rv = do_kill(pid, portable_signum, REAL(kill));
869 extern int REAL(tkill)(int, int);
876 rv = do_kill(tid, portable_signum, REAL(tkill));
904 rv = REAL(tgkill)(tgid, tid, mips_signum);
928 rv = REAL(raise)(mips_signum);
1230 extern int REAL(sigaction)(int, const struct sigaction *, struct sigaction *);
1237 rv = do_sigaction_portable(portable_signum, act, oldact, REAL(sigaction), NULL);
1370 *REAL(__errno)() = EFAULT;
1374 rv = REAL(sigsuspend)(&mips_sigmask);
1391 *REAL(__errno)() = EFAULT;
1394 rv = REAL(sigpending)(&mips_sigset);
1414 *REAL(__errno)() = EFAULT;
1419 rv = REAL(sigwait)(&mips_sigset, &mips_sig);
1447 rv = REAL(siginterrupt)(mips_signum, flag);
1516 extern int REAL(sigprocmask)(int, const sigset_t *, sigset_t *);
1523 rv = do_sigmask(portable_how, portable_sigset, portable_oldset, REAL(sigprocmask), NULL);
1533 extern int REAL(__rt_sigaction)(int , const struct sigaction *, struct sigaction *, size_t);
1542 *REAL(__errno)() = EINVAL;
1546 rv = do_sigaction_portable(portable_signum, act, oldact, NULL, REAL(__rt_sigaction));
1558 extern int REAL(__rt_sigprocmask)(int, const sigset_t *, sigset_t *, size_t);
1567 *REAL(__errno)() = EINVAL;
1571 rv = do_sigmask(portable_how, portable_sigset, portable_oldset, NULL, REAL(__rt_sigprocmask));
1585 extern int REAL(__rt_sigtimedwait)(const sigset_t *, siginfo_t *, const struct timespec *, size_t);
1599 *REAL(__errno)() = EINVAL;
1613 rv = REAL(__rt_sigtimedwait)(native_sigset, native_siginfo, timeout, sizeof(sigset_t));
1664 portable_sip->si_uid = getuid(); /* Real UID of sender */
1684 * Real Time version of sigqueueinfo().
1724 * Thread Group flavor of the real time version of sigqueueinfo().
1813 rv = REAL(sigaltstack)(mips_ss, mips_oss);