From a57404442ca4fdec91cc7a0aae2078660fce737e Mon Sep 17 00:00:00 2001 From: Zygo Blaxell Date: Sat, 26 Nov 2016 01:06:44 -0500 Subject: [PATCH] execpipe: remove unreachable debug code This is tripping up builds in stricter build environments. https://github.com/Zygo/bees/issues/2 --- lib/execpipe.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/execpipe.cc b/lib/execpipe.cc index 57a150d..68cfcbd 100644 --- a/lib/execpipe.cc +++ b/lib/execpipe.cc @@ -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); } }