On Sat, Nov 27, 1999 at 01:42:28AM +0100, Jamie Lokier wrote:
> With SIGUSR1 handler:
> 
>         if (save_jb_flag)
>                 longjmp (save_jb, 1);

Yes, longjmp() is the (only?) solution if pselect() is missing.
However, be aware that longjmp() from a signal handler can be a bit
tricky if you have nested signal handlers. And you may want to use
siglongjmp() instead of longjmp().

-- 
Jan
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]

Reply via email to