[前][次][番号順一覧][スレッド一覧]

ruby-changes:7976

From: ko1 <ko1@a...>
Date: Wed, 24 Sep 2008 04:11:16 +0900 (JST)
Subject: [ruby-changes:7976] Ruby:r19499 (trunk): * vm_core.h: remove unused frame values.

ko1	2008-09-24 04:11:06 +0900 (Wed, 24 Sep 2008)

  New Revision: 19499

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19499

  Log:
    * vm_core.h: remove unused frame values.
    (fix previous commit miss)

  Modified files:
    trunk/vm_core.h

Index: vm_core.h
===================================================================
--- vm_core.h	(revision 19498)
+++ vm_core.h	(revision 19499)
@@ -125,12 +125,6 @@
 #define GetISeqPtr(obj, ptr) \
   GetCoreDataFromValue(obj, rb_iseq_t, ptr)
 
-typedef struct rb_iseq_profile_struct {
-    VALUE count;
-    VALUE time_self;
-    VALUE time_cumu; /* cumulative */
-} rb_iseq_profile_t;
-
 struct rb_iseq_struct;
 
 struct rb_iseq_struct {
@@ -221,7 +215,6 @@
 
     /* misc */
     ID defined_method_id;	/* for define_method */
-    rb_iseq_profile_t profile;
 
     /* used at compile time */
     struct iseq_compile_data *compile_data;
@@ -299,8 +292,6 @@
     VALUE proc;			/* cfp[9] / block[4] */
     ID method_id;               /* cfp[10] saved in special case */
     VALUE method_class;         /* cfp[11] saved in special case */
-    VALUE prof_time_self;       /* cfp[12] */
-    VALUE prof_time_chld;       /* cfp[13] */
 } rb_control_frame_t;
 
 typedef struct rb_block_struct {

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]