Prevents stack overflow in signal processing for the burst_aarch64_sys test without increasing the size of the signal stack.
The implementation of signal
varies across different systems and involves unspecified behavior for various scenarios.
Instead, it is universally recommended to use sigaction
.
This signal overflow might not have been a problem for other tests/applications because most of them are using sigaction
.
Fixes: #4425 (closed)