Searched refs:handler_stack (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_netbsd_libcdep.cpp200 stack_t handler_stack; local
201 internal_memset(&handler_stack, 0, sizeof(handler_stack));
202 handler_stack.ss_sp = handler_stack_memory.data();
203 handler_stack.ss_size = kHandlerStackSize;
204 internal_sigaltstack(&handler_stack, nullptr);
H A Dsanitizer_stoptheworld_linux_libcdep.cpp299 stack_t handler_stack; local
300 internal_memset(&handler_stack, 0, sizeof(handler_stack));
301 handler_stack.ss_sp = handler_stack_memory.data();
302 handler_stack.ss_size = kHandlerStackSize;
303 internal_sigaltstack(&handler_stack, nullptr);

Completed in 112 milliseconds