aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--vm_core.h4
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ddab08b026..da2b4d52e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Sep 26 21:36:33 2008 Koichi Sasada <ko1@atdot.net>
+
+ * vm_core.h (RUBY_VM_CHECK_INTS_TH): add an UNLIKELY hint.
+
Fri Sep 26 19:33:36 2008 Tanaka Akira <akr@fsij.org>
* include/ruby/encoding.h (rb_str_encode): renamed from
diff --git a/vm_core.h b/vm_core.h
index 68772cd111..a071f83cab 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -571,7 +571,6 @@ typedef rb_control_frame_t *
((rb_control_frame_t *)((VALUE *)(b) - 5))
/* VM related object allocate functions */
-/* TODO: should be static functions */
VALUE rb_thread_alloc(VALUE klass);
VALUE rb_proc_alloc(VALUE klass);
@@ -624,8 +623,7 @@ extern rb_vm_t *ruby_current_vm;
void rb_thread_execute_interrupts(rb_thread_t *);
#define RUBY_VM_CHECK_INTS_TH(th) do { \
- if (th->interrupt_flag) { \
- /* TODO: trap something event */ \
+ if (UNLIKELY(th->interrupt_flag)) { \
rb_thread_execute_interrupts(th); \
} \
} while (0)