diff options
author | kosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-11-19 11:13:40 +0000 |
---|---|---|
committer | kosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-11-19 11:13:40 +0000 |
commit | 4b25e0ceca487725f4579d21271546e2bd0d3563 (patch) | |
tree | efe66ab1db91d0ad2e19466566ee73de5bc3b92d /thread.c | |
parent | 212150c2e148278b1a300bd823f0a3d4753cd37d (diff) |
* thread.c (rb_threadptr_async_errinfo_active_p): added a small
comment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r-- | thread.c | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -1476,12 +1476,20 @@ rb_threadptr_async_errinfo_deque(rb_thread_t *th, enum interrupt_timing timing) int rb_threadptr_async_errinfo_active_p(rb_thread_t *th) { - if (th->async_errinfo_queue_checked || rb_threadptr_async_errinfo_empty_p(th)) { + /* + * For optimization, we don't check async errinfo queue + * if it nor a thread interrupt mask were not changed + * since last check. + */ + if (th->async_errinfo_queue_checked) { return 0; } - else { - return 1; + + if (rb_threadptr_async_errinfo_empty_p(th)) { + return 0; } + + return 1; } static VALUE |