ruby-changes:6503
From: nobu <ko1@a...>
Date: Fri, 11 Jul 2008 06:28:42 +0900 (JST)
Subject: [ruby-changes:6503] Ruby:r18019 (mvm): * thread.c (rb_get_coverages): return VM specific data instead of the
nobu 2008-07-11 06:27:33 +0900 (Fri, 11 Jul 2008) New Revision: 18019 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18019 Log: * thread.c (rb_get_coverages): return VM specific data instead of the pointer to it. Modified files: branches/mvm/thread.c Index: mvm/thread.c =================================================================== --- mvm/thread.c (revision 18018) +++ mvm/thread.c (revision 18019) @@ -3670,7 +3670,7 @@ VALUE rb_get_coverages(void) { - return rb_vm_specific_ptr(rb_vmkey_coverages); + return *rb_vm_specific_ptr(rb_vmkey_coverages); } void -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/