Commit f05699d1 by Serge Hallyn

Revert "monitor.c: sanity check on waitpid return value"

It's reported to errors in parallel starts. Reported-by: 's avatar"S.Çağlar Onur" <caglar@10ur.org> This reverts commit 6b791669.
parent 6b791669
......@@ -207,8 +207,7 @@ int lxc_monitord_spawn(const char *lxcpath)
}
if (pid1) {
if (waitpid(pid1, NULL, 0) != pid1)
SYSERROR("unexpected waitpid return value on double-fork");
waitpid(pid1, NULL, 0);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment