weston: don't hang in wait()

Pausing weston (with ^Z in the shell) and putting it in the background
made it hang.
Bill Spitzak 13 years ago committed by Kristian Høgsberg
parent d273e28567
commit 027b962d8c
  1. 5
      src/compositor.c

@ -59,7 +59,10 @@ sigchld_handler(int signal_number, void *data)
int status;
pid_t pid;
pid = wait(&status);
pid = waitpid(-1, &status, WNOHANG);
if (!pid)
return 1;
wl_list_for_each(p, &child_process_list, link) {
if (p->pid == pid)
break;

Loading…
Cancel
Save