Searched refs:SA_RESTORER (Results 1 - 10 of 10) sorted by relevance

/external/kernel-headers/original/uapi/asm-arm64/asm/
H A Dsignal.h20 #define SA_RESTORER 0x04000000 macro
/external/ltp/include/lapi/
H A Drt_sigaction.h61 * x86-64 should always use SA_RESTORER.
63 * -- thus SA_RESTORER must always be defined along with
66 #undef SA_RESTORER macro
67 #define SA_RESTORER 0x04000000 macro
150 #undef SA_RESTORER macro
151 #define SA_RESTORER 0x04000000 macro
208 kact.sa_flags |= SA_RESTORER;
/external/kernel-headers/original/uapi/asm-generic/
H A Dsignal.h80 * SA_RESTORER 0x04000000
98 #ifdef SA_RESTORER
106 #ifdef SA_RESTORER
/external/strace/xlat/
H A Dsigact_flags.h15 #if defined(SA_RESTORER) || (defined(HAVE_DECL_SA_RESTORER) && HAVE_DECL_SA_RESTORER)
16 XLAT(SA_RESTORER),
/external/strace/
H A Dsignal.c39 #ifndef SA_RESTORER
41 # define SA_RESTORER ASM_SA_RESTORER macro
46 * Some architectures define SA_RESTORER in their headers,
49 * Some architectures, otherwise, do not define SA_RESTORER in their headers,
52 #ifdef SA_RESTORER
58 #else /* !SA_RESTORER */
317 #if HAVE_SA_RESTORER && defined SA_RESTORER
336 #if HAVE_SA_RESTORER && defined SA_RESTORER
337 if (sa.sa_flags & SA_RESTORER) {
508 #if HAVE_SA_RESTORER && defined SA_RESTORER
[all...]
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dsignal.h81 #define SA_RESTORER 0x04000000 macro
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dsignal.h88 #define SA_RESTORER 0x04000000 macro
/external/libchrome/sandbox/linux/services/
H A Dsyscall_wrappers.cc168 #if !defined(SA_RESTORER)
169 #define SA_RESTORER 0x04000000 macro
230 if (!(linux_act.sa_flags & SA_RESTORER)) {
231 linux_act.sa_flags |= SA_RESTORER;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cc624 #define SA_RESTORER 0x04000000 macro
638 // Without SA_RESTORER kernel ignores the calls (probably returns EINVAL).
639 k_act.sa_flags = u_act->sa_flags | SA_RESTORER;
/external/google-breakpad/src/third_party/lss/
H A Dlinux_syscall_support.h630 #ifndef SA_RESTORER
631 #define SA_RESTORER 0x04000000 macro
3239 * SA_RESTORER in order to be able to return from a signal handler.
3243 if (act != NULL && !(act->sa_flags & SA_RESTORER)) {
3245 a.sa_flags |= SA_RESTORER;
3485 * SA_RESTORER when using realtime signals. Otherwise, it does not
3489 * Apparently, a SA_RESTORER is implicitly set by the kernel, when
3494 if (!(a.sa_flags & SA_RESTORER)) {
3495 a.sa_flags |= SA_RESTORER;

Completed in 244 milliseconds