From 803c173dbc90ace7332b585ec4ce4b866039b4dd Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 16 May 2011 12:08:41 +0200 Subject: removed accidentally pushed code --- src/lib/report.c | 28 ---------------------------- 1 file changed, 28 deletions(-) (limited to 'src/lib') diff --git a/src/lib/report.c b/src/lib/report.c index 2f7dd0fd..a3ba6e96 100644 --- a/src/lib/report.c +++ b/src/lib/report.c @@ -42,34 +42,6 @@ int analyze_and_report_dir(const char* dirname) execlp("bug-reporting-wizard", "bug-reporting-wizard", "--", dirname, NULL); perror_msg_and_die("Can't execute %s", "bug-reporting-wizard"); } - else if(pid > 0) - { - int status = 0; - pid_t p = waitpid(pid, &status, WUNTRACED); - if(p == -1) - { - error_msg("can't waitpid"); - return EXIT_FAILURE; - } - if (WIFEXITED(status)) - { - VERB2 log("reporting finished with exitcode: status=%d\n", WEXITSTATUS(status)); - return WEXITSTATUS(status); - } - else if (WIFSIGNALED(status)) - { - VERB2 log("reporting killed by signal %d\n", WTERMSIG(status)); - } - else if (WIFSTOPPED(status)) - { - /* should parent continue when the reporting is stopped??*/ - VERB2 log("reporting stopped by signal %d\n", WSTOPSIG(status)); - } - else if (WIFCONTINUED(status)) - { - VERB2 log("continued\n"); - } - } return 0; } -- cgit