Re: SA_SIGINFO seems to be ignored

2005-09-20 Thread Christopher Faylor
On Tue, Sep 20, 2005 at 05:03:08PM -0700, Yitzchak Scott-Thoennes wrote: >signal.h defines SA_SIGINFO, but it doesn't seem to work; in the following >testcase, hiphup gets info passed as NULL. Right. It's not implemented. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Pr

SA_SIGINFO seems to be ignored

2005-09-20 Thread Yitzchak Scott-Thoennes
signal.h defines SA_SIGINFO, but it doesn't seem to work; in the following testcase, hiphup gets info passed as NULL. #include #include void hiphup(int signo, siginfo_t *info, void *context) { if (info == NULL) { printf("info NULL!\n"); return; } printf("got signal\nsigno: %d, info->si_sign