Lines Matching refs:sigaction
602 ALOGE("%s: HINT: Likely best to use gdbserver and look at sigaction arguments.", __func__);
642 static sighandler_t sighandler_pton(sighandler_portable_t portable_handler, int sigaction)
646 ALOGV("%s(portable_handler:%p, sigaction:%d) {", __func__,
647 portable_handler, sigaction);
658 * Calling sigaction() with a bogus signal handler doesn't fail,
671 if (sigaction)
1068 * The incoming system call used a Portable/ARM sigaction structure:
1082 * struct sigaction {
1091 * This sigaction structure needs to be mapped before the MIPS systems call as well as after for
1092 * returning the old/previous sigaction. Also, like signal_portable() above, we need to maintain
1102 struct sigaction mips_act;
1103 struct sigaction *mips_act_ptr;
1104 struct sigaction mips_oldact;
1134 mips_act_ptr = (struct sigaction *)act;
1137 * Make the MIPS version of sigaction, which has no sa_restorer function pointer.
1217 int WRAP(sigaction)(int portable_signum, const struct sigaction_portable *act,
1220 extern int REAL(sigaction)(int, const struct sigaction *, struct sigaction *);
1227 rv = do_sigaction_portable(portable_signum, act, oldact, REAL(sigaction), NULL);
1523 extern int REAL(__rt_sigaction)(int , const struct sigaction *, struct sigaction *, size_t);