diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-03-19 14:15:07 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-03-19 14:15:07 +0000 |
commit | 5ff36b57be5cdc599f5d4ea3524a65ca4d65433d (patch) | |
tree | 0a543fc1dc68a709ad6fd4caa9e5674e4fbfc12b /lib/tracer.rb | |
parent | b6c5aa09a83e96ca8821c75e81ed2894f83b4d57 (diff) | |
download | ruby-5ff36b57be5cdc599f5d4ea3524a65ca4d65433d.tar.gz |
* lib/tracer.rb (trace_func): save and recover Thread.critical state.
Fixed by Fukumoto Atsushi <fukumoto@imasy.or.jp> [ruby-dev:19830]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3582 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/tracer.rb')
-rw-r--r-- | lib/tracer.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/tracer.rb b/lib/tracer.rb index f522a9178d..3ccf1b5017 100644 --- a/lib/tracer.rb +++ b/lib/tracer.rb @@ -119,6 +119,7 @@ class Tracer return unless p.call event, file, line, id, binding, klass end + saved_crit = Thread.critical Thread.critical = true stdout.printf("#%d:%s:%d:%s:%s: %s", get_thread_no, @@ -127,7 +128,7 @@ class Tracer klass || '', EVENT_SYMBOL[event], get_line(file, line)) - Thread.critical = false + Thread.critical = saved_crit end Single = new |