Home
last modified time | relevance | path

Searched refs:ASM_SIGRTMIN (Results 1 – 10 of 10) sorted by relevance

/external/strace/tests/
Drt_sigreturn.c33 #ifdef ASM_SIGRTMIN
34 # define RT_0 ASM_SIGRTMIN
Dsigreturn.c43 # ifdef ASM_SIGRTMIN
44 # define RT_0 ASM_SIGRTMIN
/external/strace/tests-mx32/
Drt_sigreturn.c33 #ifdef ASM_SIGRTMIN
34 # define RT_0 ASM_SIGRTMIN
Dsigreturn.c43 # ifdef ASM_SIGRTMIN
44 # define RT_0 ASM_SIGRTMIN
/external/strace/tests-m32/
Drt_sigreturn.c33 #ifdef ASM_SIGRTMIN
34 # define RT_0 ASM_SIGRTMIN
Dsigreturn.c43 # ifdef ASM_SIGRTMIN
44 # define RT_0 ASM_SIGRTMIN
/external/strace/
Dsignal.c69 #ifndef ASM_SIGRTMIN
71 # define ASM_SIGRTMIN 32 macro
136 if (s >= ASM_SIGRTMIN && s <= (unsigned int) ASM_SIGRTMAX) { in signame()
137 xsprintf(buf, "SIGRT_%u", s - ASM_SIGRTMIN); in signame()
208 else if (i >= ASM_SIGRTMIN && i <= ASM_SIGRTMAX) { in sprintsigmask_n()
209 s = xappendstr(outstr, s, "RT_%u", i - ASM_SIGRTMIN); in sprintsigmask_n()
Dconfigure.ac808 AC_DEFINE_UNQUOTED([ASM_SIGRTMIN], [$st_cv_SIGRTMIN], definition
Dconfig.h.in22 #undef ASM_SIGRTMIN
DChangeLog39188 * configure.ac (ASM_SIGRTMIN): Define to SIGRTMIN from <asm/signal.h>.
39189 * signal.c: Use ASM_SIGRTMIN instead of constants provided by libc.
39190 * tests/sigreturn.c: Use ASM_SIGRTMIN instead of hardcoded value.