Wait for strace child process to die properly

This commit is contained in:
Hisham Muhammad 2006-05-09 17:58:40 +00:00
parent 723bddfb87
commit 9d5cc90497
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,8 @@ in the source distribution for its full text.
#include <stdbool.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
#include "TraceScreen.h"
#include "ProcessList.h"
@ -162,5 +164,6 @@ void TraceScreen_run(TraceScreen* this) {
ListBox_draw(lb, true);
}
kill(child, SIGTERM);
waitpid(child, NULL, 0);
fclose(strace);
}