summaryrefslogtreecommitdiff
path: root/jobs.c~
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2011-12-08 20:14:08 -0500
committerChet Ramey <chet.ramey@case.edu>2011-12-08 20:14:08 -0500
commit691aebcba30d177684f6cbb95e9377dfc598bda0 (patch)
tree4dff4b9ee7b8cf166437ec6883a8a4a569e30253 /jobs.c~
parent3eb2d94ad75ee80120ed2879f56dc954ddfeb03d (diff)
downloadbash-691aebcba30d177684f6cbb95e9377dfc598bda0.tar.gz
commit bash-20090813 snapshot
Diffstat (limited to 'jobs.c~')
-rw-r--r--jobs.c~3
1 files changed, 0 insertions, 3 deletions
diff --git a/jobs.c~ b/jobs.c~
index 10614d3c..dcc1fefb 100644
--- a/jobs.c~
+++ b/jobs.c~
@@ -455,7 +455,6 @@ start_pipeline ()
cleanup_the_pipeline ();
pipeline_pgrp = 0;
#if defined (PGRP_PIPE)
-itrace("start_pipeline: cleaning up existing pipeline: closing %d %d", pgrp_pipe[0], pgrp_pipe[1]);
sh_closepipe (pgrp_pipe);
#endif
}
@@ -465,7 +464,6 @@ itrace("start_pipeline: cleaning up existing pipeline: closing %d %d", pgrp_pipe
{
if (pipe (pgrp_pipe) == -1)
sys_error (_("start_pipeline: pgrp pipe"));
-itrace("start_pipeline: pgrp_pipe: %d %d", pgrp_pipe[0], pgrp_pipe[1]);
}
#endif
}
@@ -487,7 +485,6 @@ stop_pipeline (async, deferred)
#if defined (PGRP_PIPE)
/* The parent closes the process group synchronization pipe. */
-itrace("stop_pipeline: close pgrp_pipe %d %d", pgrp_pipe[0], pgrp_pipe[1]);
sh_closepipe (pgrp_pipe);
#endif