1
0
Mirror von https://github.com/tkuschel/bees.git synchronisiert 2026-06-19 15:07:54 +02:00

execpipe: remove unreachable debug code

This is tripping up builds in stricter build environments.

https://github.com/Zygo/bees/issues/2
Dieser Commit ist enthalten in:
Zygo Blaxell
2016-11-26 01:06:44 -05:00
Ursprung 1e621cf4e7
Commit a57404442c
-4
Datei anzeigen
@@ -72,14 +72,10 @@ namespace crucible {
catch_all([&]() { catch_all([&]() {
parent_fd->close(); parent_fd->close();
import_fd_fn(child_fd); import_fd_fn(child_fd);
// system("ls -l /proc/$$/fd/ >&2");
rv = f(); rv = f();
}); });
_exit(rv); _exit(rv);
cerr << "PID " << getpid() << " TID " << gettid() << "STILL ALIVE" << endl;
system("ls -l /proc/$$/task/ >&2");
exit(EXIT_FAILURE);
} }
} }