aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-10-20 21:47:02 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-10-20 21:47:29 -0700
commit090f027de179f5bb92f07e5c947f3f273229d840 (patch)
tree28dd5eeb721f2d2189d5c9ca60712dfe4cb43564 /proc.cpp
parentcfa41686d2c37ee1f1c0094f46ddf77839b3d08e (diff)
Remove some previously buggy but dead code that I mistakenly resurrected
Diffstat (limited to 'proc.cpp')
-rw-r--r--proc.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/proc.cpp b/proc.cpp
index fb7ac2f2..579c37cb 100644
--- a/proc.cpp
+++ b/proc.cpp
@@ -646,11 +646,6 @@ void job_handle_signal(int signal, siginfo_t *info, void *con)
/* This is the only place that this generation count is modified. It's OK if it overflows. */
s_sigchld_generation_count += 1;
got_signal = 1;
-
- /* pca: I can't justify this kill() call */
- int errno_old = errno;
- kill(0, SIGIO);
- errno=errno_old;
}
/**