| /OK3568_Linux_fs/buildroot/package/google-breakpad/ |
| H A D | 0004-Fix-for-non-constant-SIGSTKSZ.patch | 4 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 D | 0001-exception_handler.cc-Match-the-types-for-SIGSTKSZ.patch | 4 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 D | 0005-sanitizer-Fix-asan-against-glibc-2.34-PR100114.patch | 6 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 D | sas.c | 50 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 D | tm-signal-context-force-tm.c | 127 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 D | tm-signal-pagefault.c | 238 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 D | signal.h | 55 #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 D | signal.h | 84 #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 D | signal.h | 84 #if !defined MINSIGSTKSZ || !defined SIGSTKSZ 86 #define SIGSTKSZ 8192 macro
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/x86/ |
| H A D | syscall_arg_fault.c | 21 static unsigned char altstack_data[SIGSTKSZ]; 108 .ss_size = SIGSTKSZ, in main()
|
| H A D | single_step_syscall.c | 60 static unsigned char altstack_data[SIGSTKSZ]; 214 .ss_size = SIGSTKSZ, in main()
|
| H A D | mov_ss_trap.c | 50 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 D | emacs-glibc-2.34.patch | 12 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 D | signal.h | 24 #define SIGSTKSZ 16384 macro
|
| /OK3568_Linux_fs/kernel/arch/arm64/include/uapi/asm/ |
| H A D | signal.h | 24 #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 D | sigstack.h | 30 #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 D | sigstack.h | 30 #define SIGSTKSZ 8192 macro
|
| /OK3568_Linux_fs/kernel/arch/ia64/include/uapi/asm/ |
| H A D | signal.h | 78 #define SIGSTKSZ 262144 /* default stack size for sigaltstack() */ macro
|
| /OK3568_Linux_fs/kernel/arch/parisc/include/uapi/asm/ |
| H A D | signal.h | 56 #define SIGSTKSZ 8192 macro
|
| /OK3568_Linux_fs/u-boot/include/asm-generic/ |
| H A D | signal.h | 90 #define SIGSTKSZ 8192 macro
|
| /OK3568_Linux_fs/kernel/arch/m68k/include/uapi/asm/ |
| H A D | signal.h | 61 #define SIGSTKSZ 8192 macro
|
| /OK3568_Linux_fs/kernel/arch/h8300/include/uapi/asm/ |
| H A D | signal.h | 63 #define SIGSTKSZ 8192 macro
|
| /OK3568_Linux_fs/kernel/arch/s390/include/uapi/asm/ |
| H A D | signal.h | 71 #define SIGSTKSZ 8192 macro
|
| /OK3568_Linux_fs/kernel/arch/arm/include/uapi/asm/ |
| H A D | signal.h | 71 #define SIGSTKSZ 8192 macro
|
| /OK3568_Linux_fs/kernel/arch/xtensa/include/uapi/asm/ |
| H A D | signal.h | 78 #define SIGSTKSZ 8192 macro
|