aboutsummaryrefslogtreecommitdiffstats
path: root/vm_trace.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-02 20:59:40 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-02 20:59:40 +0000
commitd2efc00b0645b93fdc17cfa419badff31f019d45 (patch)
treeb30231ac57237b2e3e04f5320ab39c09714d9d80 /vm_trace.c
parent56fa18c9d3fc8e817c7bc49cca777b051a8c5ff5 (diff)
downloadruby-d2efc00b0645b93fdc17cfa419badff31f019d45.tar.gz
vm_trace.c (rb_tp_t): pack 56 => 48 bytes on 64-bit
48 bytes is a common malloc size class on x86-64 machines which require 16-byte alignment. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_trace.c')
-rw-r--r--vm_trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_trace.c b/vm_trace.c
index 65a53d4d04..c410be7138 100644
--- a/vm_trace.c
+++ b/vm_trace.c
@@ -640,11 +640,11 @@ static VALUE rb_cTracePoint;
typedef struct rb_tp_struct {
rb_event_flag_t events;
+ int tracing; /* bool */
rb_thread_t *target_th;
void (*func)(VALUE tpval, void *data);
void *data;
VALUE proc;
- int tracing;
VALUE self;
} rb_tp_t;