changed exit(4) to asynchronous-safe _exit(4) in signal handler sig_alrm

This commit is contained in:
Daniel 2018-07-26 14:47:38 +02:00
parent 4ee35e4e53
commit 14a6aee050

View file

@ -59,7 +59,7 @@ static inline struct _mate *node_to_mate(struct udev_list_node *node)
_noreturn_ static void sig_alrm(int signo)
{
exit(4);
_exit(4);
}
static void usage(void)