X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fguestfsd.c;h=ac8750c1e96b984843cfc6d81bd5d0420e21bda7;hb=16da7589e91b0030fb5564553447f80b97c0b18c;hp=1af0f7a732b205f435193eeab50db59aa20d1dab;hpb=8d7d7c4ecfd202e04d18736718e9c5bb125ce4f0;p=libguestfs.git diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index 1af0f7a..ac8750c 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -679,6 +679,8 @@ commandrvf (char **stdoutput, char **stderror, int flags, } if (pid == 0) { /* Child process running the command. */ + signal (SIGALRM, SIG_DFL); + signal (SIGPIPE, SIG_DFL); close (0); if (flag_copy_stdin) { dup2 (stdin_fd[0], 0); @@ -767,9 +769,13 @@ commandrvf (char **stdoutput, char **stderror, int flags, quit = 0; while (quit < 2) { + again: rset2 = rset; r = select (MAX (so_fd[0], se_fd[0]) + 1, &rset2, NULL, NULL, NULL); if (r == -1) { + if (errno == EINTR) + goto again; + perror ("select"); quit: if (stdoutput) free (*stdoutput);