summaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-03 12:55:12 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-03 12:55:12 +0000
commit74f4445df249bbc846d06a77c7796298e6aea9c1 (patch)
tree9572fae0dd214bcdb10eaeec2b6643107b84986c /vm_core.h
parent935207ef6f38ce3fb95cf60a2a482603323f94a1 (diff)
downloadruby-74f4445df249bbc846d06a77c7796298e6aea9c1.tar.gz
ruby-74f4445df249bbc846d06a77c7796298e6aea9c1.tar.xz
ruby-74f4445df249bbc846d06a77c7796298e6aea9c1.zip
* ext/coverage/coverage.c, ext/coverage/extconf.rb: eliminate
COVERAGE__ and introduce coverage.so instead. How to measure coverage: (1) require "coverage.so", (2) require or load Ruby source file, and (3) Coverage.result will return the same hash as COVERAGE__. [ruby-dev:35324] * thread.c (rb_enable_coverages): start coverage measurement by using rb_add_event_hook. * thread.c (rb_get_coverages): returns current results of coverage measurement. * include/ruby/intern.h: add prototype for above two functions. * vm_core.h, vm.c: add field of coverages to rb_vm_t. * insns.def (trace): remove special handling for COVERAGE__. * iseq.c (prepare_iseq_build): switch COVERAGE__ to rb_get_coverages(). * parse.y (coverage): ditto. * thread.c (clear_coverage): ditto. * lib/coverage.rb: use coverage.so instead of COVERAGE__. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17857 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm_core.h b/vm_core.h
index 700c33f22..f60544560 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -333,6 +333,7 @@ struct rb_vm_struct
int src_encoding_index;
VALUE verbose, debug, progname;
+ VALUE coverages;
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
struct rb_objspace *objspace;