Details
Details
- Reviewers
eugenis kcc - Commits
- rGe8b09195fa25: [compiler-rt] Don't reset non-default user handler if allow_user_segv_handler…
rCRT304039: [compiler-rt] Don't reset non-default user handler if allow_user_segv_handler…
rL304039: [compiler-rt] Don't reset non-default user handler if allow_user_segv_handler…
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
test/asan/TestCases/Linux/preinstalled_signal.cc | ||
---|---|---|
48 ↗ | (On Diff #96481) | I don't like this at all. This is a mode that is not supposed to work. Could you set a signal handler in preinit_array? |
test/asan/TestCases/Linux/preinstalled_signal.cc | ||
---|---|---|
48 ↗ | (On Diff #96481) | No, asan also uses preinit_array and will be executed before this. |
test/asan/TestCases/Linux/preinstalled_signal.cc | ||
---|---|---|
36 ↗ | (On Diff #100464) | AFAIK sigset_t and kernel_sigset_t may be different in size. |
41 ↗ | (On Diff #100464) | Maybe limit the test to x86/x86_64? There are just too many things that can go wrong on different platforms. |
47 ↗ | (On Diff #100464) | is that SA_RESTORER? |
Comment Actions
Remove sigset_t
test/asan/TestCases/Linux/preinstalled_signal.cc | ||
---|---|---|
36 ↗ | (On Diff #100464) | I don't use it. |
41 ↗ | (On Diff #100464) | I'd limit if we see failures. |
47 ↗ | (On Diff #100464) | Yes, but I don't see headers defining it |