summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--eval.c1
2 files changed, 2 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 7e6fb78f8..3da882eab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -21,13 +21,10 @@ Fri Feb 21 05:16:14 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
Thu Feb 20 19:05:51 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
- * eval.c (rb_thread_remove): thread may die in the process of
- rb_thread_die(). this change was suggested by Rudi Cilibrasi
- <cilibrar@drachma.ugcs.caltech.edu>.
-
* eval.c (rb_thread_start_0): main thread swapped by fork() may
terminate rb_thread_start_0() successfully. call ruby_stop(0);
- this change too was suggested by Rudi.
+ this change was suggested by Rudi Cilibrasi
+ <cilibrar@drachma.ugcs.caltech.edu>.
Thu Feb 20 18:44:51 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
diff --git a/eval.c b/eval.c
index 4c5c0b55b..ea60f9bcd 100644
--- a/eval.c
+++ b/eval.c
@@ -7980,7 +7980,6 @@ rb_thread_remove(th)
rb_thread_ready(th);
rb_thread_die(th);
- if (th->status == THREAD_KILLED) return; /* died in process */
th->prev->next = th->next;
th->next->prev = th->prev;
}