1#include <signal.h> 2 3void psiginfo(const siginfo_t *si, const char *msg) 4{ 5 psignal(si->si_signo, msg); 6}