Richard Henderson <r...@redhat.com> writes: > On 12/21/2011 02:29 PM, Ian Lance Taylor wrote: >> +/* Ignore a signal. This is called on the alternate signal stack so >> + it may not split the stack. */ >> + >> +static void sig_ignore (int) __attribute__ ((no_split_stack)); >> >> static void >> sig_ignore (int sig __attribute__ ((unused))) >> { >> } > > Does SIG_IGN not work for some reason?
It probably does work. I was just copying the way the master library works. I don't know why it doesn't use SIG_IGN. Fixing the master library is something to look into at some later date, I think. Ian