mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
92cb7d0ad4
commit
a33fdc4ec0
3 changed files with 8 additions and 5 deletions
|
@ -1,4 +1,6 @@
|
|||
Sat Aug 14 13:23:29 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Sat Aug 14 14:58:13 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* vm_core.h (rb_{get,set,reset}_coverages): used in coverage.
|
||||
|
||||
* include/ruby/intern.h (rb_time_interval): used in io/wait.
|
||||
|
||||
|
|
|
@ -9,10 +9,7 @@
|
|||
************************************************/
|
||||
|
||||
#include "ruby.h"
|
||||
|
||||
extern VALUE rb_get_coverages(void);
|
||||
extern void rb_set_coverages(VALUE);
|
||||
extern void rb_reset_coverages(void);
|
||||
#include "../../vm_core.h"
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue