summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-24 23:56:11 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-24 23:56:11 +0000
commit94bfebb3fad44c5418de4ef20493e314344b64c6 (patch)
tree2acd04cf6df894a0b9b242a9729b8de965ebd358 /eval.c
parent5747a6c480edc60cd8d7f1deaabd3d65f5d14778 (diff)
* error.c (rb_warn_m): should not warn if -W0 is specified.
[ruby-talk:82675] * util.c (ruby_strtod): skip preceding zeros before counting digits in the mantissa. (ruby-bugs PR#1181) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index ec0a03118b..897ae7e602 100644
--- a/eval.c
+++ b/eval.c
@@ -9902,6 +9902,7 @@ rb_thread_atfork()
if (rb_thread_alone()) return;
FOREACH_THREAD(th) {
if (th != curr_thread) {
+ rb_warn("fork terminates thread at %s:%s", th->node->nd_file, nd_line(th->node));
rb_thread_die(th);
}
}