feat: export debugging signal handlers to zig

This commit is contained in:
CJ van den Berg 2025-07-03 15:58:41 +02:00
parent 2f7228cea6
commit b3176b32e6
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 9 additions and 0 deletions

View file

@ -12,6 +12,10 @@ void install_remote_debugger();
void install_backtrace();
void install_jitdebugger();
void sighdl_debugger(int no, siginfo_t * /*sigi*/, void * /*uco*/);
void sighdl_remote_debugger(int no, siginfo_t * /*sigi*/, void * /*uco*/);
void sighdl_backtrace(int no, siginfo_t * /*sigi*/, void * /*uco*/);
#ifdef __cplusplus
}
#endif