Skip to content

Commit

Permalink
vm_core.h: objspace always
Browse files Browse the repository at this point in the history
* vm_core.h (rb_vm_struct): define objspace always regardless
  ENABLE_VM_OBJSPACE.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51782 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Sep 7, 2015
1 parent 22fa19d commit 2b2c691
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Mon Sep 7 16:50:07 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>

* vm_core.h (rb_vm_struct): define objspace always regardless
ENABLE_VM_OBJSPACE.

Mon Sep 7 16:49:30 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>

* vm_core.h (rb_vm_struct): define objspace always regardless
ENABLE_VM_OBJSPACE.

Mon Sep 7 15:54:58 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>

* ruby_atomic.h (ATOMIC_VALUE_CAS): fix typo.
Expand Down
4 changes: 0 additions & 4 deletions gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,7 @@ static ruby_gc_params_t gc_params = {
GC_OLDMALLOC_LIMIT_MIN,
GC_OLDMALLOC_LIMIT_MAX,
GC_OLDMALLOC_LIMIT_GROWTH_FACTOR,
#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
FALSE,
#endif
};

/* GC_DEBUG:
Expand Down Expand Up @@ -1267,9 +1265,7 @@ rb_objspace_alloc(void)

return objspace;
}
#endif

#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
static void free_stack_chunks(mark_stack_t *);
static void heap_page_free(rb_objspace_t *objspace, struct heap_page *page);

Expand Down
4 changes: 0 additions & 4 deletions vm.c
Original file line number Diff line number Diff line change
Expand Up @@ -2784,10 +2784,6 @@ rb_vm_set_progname(VALUE filename)
RB_OBJ_WRITE(cfp->iseq, &cfp->iseq->body->location.path, filename);
}

#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
struct rb_objspace *rb_objspace_alloc(void);
#endif

extern const struct st_hash_type rb_fstring_hash_type;

void
Expand Down
5 changes: 1 addition & 4 deletions vm_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -409,10 +409,9 @@ enum ruby_basic_operators {
#define GetVMPtr(obj, ptr) \
GetCoreDataFromValue((obj), rb_vm_t, (ptr))

#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
struct rb_objspace;
struct rb_objspace *rb_objspace_alloc(void);
void rb_objspace_free(struct rb_objspace *);
#endif

typedef struct rb_hook_list_struct {
struct rb_event_hook_struct *hooks;
Expand Down Expand Up @@ -476,9 +475,7 @@ typedef struct rb_vm_struct {

VALUE defined_module_hash;

#if defined(ENABLE_VM_OBJSPACE) && ENABLE_VM_OBJSPACE
struct rb_objspace *objspace;
#endif

/*
* @shyouhei notes that this is not for storing normal Ruby
Expand Down

0 comments on commit 2b2c691

Please sign in to comment.