[llvm] [Support] Re-raise external signals (PR #125854)

Alexandre Ganea via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 5 09:09:43 PST 2025


================
@@ -370,7 +371,7 @@ void sys::CleanupOnSignal(uintptr_t Context) {
 }
 
 // The signal handler that runs.
-static void SignalHandler(int Sig) {
+static void SignalHandler(int Sig, siginfo_t *Info, void *Context) {
----------------
aganea wrote:

You can leave out Context since it is unused in this function, just keep the param unnamed.

https://github.com/llvm/llvm-project/pull/125854


More information about the llvm-commits mailing list