Home
last modified time | relevance | path

Searched refs:SIGSTKSZ (Results 1 – 25 of 41) sorted by relevance

12

/OK3568_Linux_fs/buildroot/package/google-breakpad/
H A D0004-Fix-for-non-constant-SIGSTKSZ.patch4 Subject: [PATCH] Fix for non-constant SIGSTKSZ
6 On glibc > 2.33, `SIGSTKSZ` might not be constant (in which case
8 http://sourceware-org.1504.n7.nabble.com/PATCH-sysconf-Add-SC-MINSIGSTKSZ-SC-SIGSTKSZ-BZ-20305-td65…
12 `SIGSTKSZ` and the new configurable one.
27 // SIGSTKSZ may be too small to prevent the signal handlers from overrunning
30 - static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ);
31 + static const unsigned kSigStackSize = std::max((unsigned) 16384, (unsigned) SIGSTKSZ);
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/breakpad/breakpad/
H A D0001-exception_handler.cc-Match-the-types-for-SIGSTKSZ.patch4 Subject: [PATCH] exception_handler.cc: Match the types for SIGSTKSZ
6 In glibc 2.34, SIGSTKSZ is a syscall which returns a long int, therefore
10 | 141 | static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ);
24 // SIGSTKSZ may be too small to prevent the signal handlers from overrunning
27 - static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ);
28 + static const unsigned kSigStackSize = std::max(16384u, (unsigned)SIGSTKSZ);
/OK3568_Linux_fs/buildroot/package/gcc/8.4.0/
H A D0005-sanitizer-Fix-asan-against-glibc-2.34-PR100114.patch6 As mentioned in the PR, SIGSTKSZ is no longer a compile time constant in
8 static const uptr kAltStackSize = SIGSTKSZ * 4;
37 -static const uptr kAltStackSize = SIGSTKSZ * 4; // SIGSTKSZ is not enough.
39 + // SIGSTKSZ is not enough.
40 + static const uptr kAltStackSize = SIGSTKSZ * 4;
/OK3568_Linux_fs/kernel/tools/testing/selftests/sigaltstack/
H A Dsas.c50 sp >= (unsigned long)sstack + SIGSTKSZ) { in my_usr1()
120 sstack = mmap(NULL, SIGSTKSZ, PROT_READ | PROT_WRITE, in main()
142 stk.ss_size = SIGSTKSZ; in main()
164 ustack = mmap(NULL, SIGSTKSZ, PROT_READ | PROT_WRITE, in main()
173 uc.uc_stack.ss_size = SIGSTKSZ; in main()
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/tm/
H A Dtm-signal-context-force-tm.c127 ss.ss_sp = mmap(NULL, SIGSTKSZ, PROT_READ | PROT_WRITE, in tm_trap_test()
129 ss.ss_size = SIGSTKSZ; in tm_trap_test()
138 if (madvise(ss.ss_sp, SIGSTKSZ, MADV_DONTNEED)) { in tm_trap_test()
H A Dtm-signal-pagefault.c238 ss.ss_sp = get_uf_mem(SIGSTKSZ, NULL); in tm_signal_pagefault()
239 ss.ss_size = SIGSTKSZ; in tm_signal_pagefault()
/OK3568_Linux_fs/kernel/include/uapi/asm-generic/
H A Dsignal.h55 #if !defined MINSIGSTKSZ || !defined SIGSTKSZ
57 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/asm-generic/
H A Dsignal.h84 #if !defined MINSIGSTKSZ || !defined SIGSTKSZ
86 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/asm-generic/
H A Dsignal.h84 #if !defined MINSIGSTKSZ || !defined SIGSTKSZ
86 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/kernel/tools/testing/selftests/x86/
H A Dsyscall_arg_fault.c21 static unsigned char altstack_data[SIGSTKSZ];
108 .ss_size = SIGSTKSZ, in main()
H A Dsingle_step_syscall.c60 static unsigned char altstack_data[SIGSTKSZ];
214 .ss_size = SIGSTKSZ, in main()
H A Dmov_ss_trap.c50 static unsigned char altstack_data[SIGSTKSZ];
254 .ss_size = SIGSTKSZ, in main()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/emacs/files/
H A Demacs-glibc-2.34.patch12 defines SIGSTKSZ when _GNU_SOURCE is defined.
25 -static unsigned char sigsegv_stack[SIGSTKSZ];
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/asm/
H A Dsignal.h24 #define SIGSTKSZ 16384 macro
/OK3568_Linux_fs/kernel/arch/arm64/include/uapi/asm/
H A Dsignal.h24 #define SIGSTKSZ 16384 macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/
H A Dsigstack.h30 #define SIGSTKSZ 16384 macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/
H A Dsigstack.h30 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/kernel/arch/ia64/include/uapi/asm/
H A Dsignal.h78 #define SIGSTKSZ 262144 /* default stack size for sigaltstack() */ macro
/OK3568_Linux_fs/kernel/arch/parisc/include/uapi/asm/
H A Dsignal.h56 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/u-boot/include/asm-generic/
H A Dsignal.h90 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/kernel/arch/m68k/include/uapi/asm/
H A Dsignal.h61 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/kernel/arch/h8300/include/uapi/asm/
H A Dsignal.h63 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/kernel/arch/s390/include/uapi/asm/
H A Dsignal.h71 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/kernel/arch/arm/include/uapi/asm/
H A Dsignal.h71 #define SIGSTKSZ 8192 macro
/OK3568_Linux_fs/kernel/arch/xtensa/include/uapi/asm/
H A Dsignal.h78 #define SIGSTKSZ 8192 macro

12