summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-14 05:58:19 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-14 05:58:19 +0000
commita33fdc4ec0e8110a7fe3581e1ee37b871efbdce3 (patch)
treea6a07b0b1b37d580f004af3787773a6d9bd8339f /vm_core.h
parent92cb7d0ad49d5c681119471862698d9de00bd1a6 (diff)
* vm_core.h (rb_{get,set,reset}_coverages): used in coverage.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28978 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index d306b9d143..7676b2ff82 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -703,6 +703,10 @@ rb_threadptr_exec_event_hooks(rb_thread_t *th, rb_event_flag_t flag, VALUE self,
int rb_thread_check_trap_pending(void);
+extern VALUE rb_get_coverages(void);
+extern void rb_set_coverages(VALUE);
+extern void rb_reset_coverages(void);
+
#if defined __GNUC__ && __GNUC__ >= 4
#pragma GCC visibility pop
#endif