2014-06-08 21:39 GMT+02:00 Iñaki Baz Castillo <[email protected]>: > Hi, if I use sigaction() to ignore (SIG_ING) the USR1 signal and then > I run a uv_signal handler for the USR1 signal, then the signal gets > handled by my UV handler. > > I just want to know whether this is the intended and guaranteed behavior or > not.
By looking into the code it happens that libuv (at least in unix/bsd) uses sigaction() to set the signal handler so the above seems then guaranteed :) -- Iñaki Baz Castillo <[email protected]> -- You received this message because you are subscribed to the Google Groups "libuv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/libuv. For more options, visit https://groups.google.com/d/optout.
