1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

execpipe: remove unreachable debug code

This is tripping up builds in stricter build environments.

https://github.com/Zygo/bees/issues/2
This commit is contained in:
Zygo Blaxell 2016-11-26 01:06:44 -05:00
parent 1e621cf4e7
commit a57404442c

View File

@ -72,14 +72,10 @@ namespace crucible {
catch_all([&]() {
parent_fd->close();
import_fd_fn(child_fd);
// system("ls -l /proc/$$/fd/ >&2");
rv = f();
});
_exit(rv);
cerr << "PID " << getpid() << " TID " << gettid() << "STILL ALIVE" << endl;
system("ls -l /proc/$$/task/ >&2");
exit(EXIT_FAILURE);
}
}