mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* gc.c: removed trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15754 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2b1b74a099
commit
434b820f51
1 changed files with 5 additions and 5 deletions
10
gc.c
10
gc.c
|
@ -525,7 +525,7 @@ rb_fill_value_cache(rb_thread_t *th)
|
||||||
/* LOCK */
|
/* LOCK */
|
||||||
for (i=0; i<RUBY_VM_VALUE_CACHE_SIZE; i++) {
|
for (i=0; i<RUBY_VM_VALUE_CACHE_SIZE; i++) {
|
||||||
VALUE v = rb_newobj_from_heap();
|
VALUE v = rb_newobj_from_heap();
|
||||||
|
|
||||||
th->value_cache[i] = v;
|
th->value_cache[i] = v;
|
||||||
RBASIC(v)->flags = FL_MARK;
|
RBASIC(v)->flags = FL_MARK;
|
||||||
}
|
}
|
||||||
|
@ -878,7 +878,7 @@ gc_mark(VALUE ptr, int lev)
|
||||||
if (!mark_stack_overflow) {
|
if (!mark_stack_overflow) {
|
||||||
if (mark_stack_ptr - mark_stack < MARK_STACK_MAX) {
|
if (mark_stack_ptr - mark_stack < MARK_STACK_MAX) {
|
||||||
*mark_stack_ptr = ptr;
|
*mark_stack_ptr = ptr;
|
||||||
mark_stack_ptr++;
|
mark_stack_ptr++;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
mark_stack_overflow = 1;
|
mark_stack_overflow = 1;
|
||||||
|
@ -1403,7 +1403,7 @@ obj_free(VALUE obj)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
rb_bug("gc_sweep(): unknown data type 0x%lx(%p)",
|
rb_bug("gc_sweep(): unknown data type 0x%lx(%p)",
|
||||||
RANY(obj)->as.basic.flags & T_MASK, (void*)obj);
|
RANY(obj)->as.basic.flags & T_MASK, (void*)obj);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2132,7 +2132,7 @@ id2ref(VALUE obj, VALUE objid)
|
||||||
* call-seq:
|
* call-seq:
|
||||||
* obj.__id__ => fixnum
|
* obj.__id__ => fixnum
|
||||||
* obj.object_id => fixnum
|
* obj.object_id => fixnum
|
||||||
*
|
*
|
||||||
* Returns an integer identifier for <i>obj</i>. The same number will
|
* Returns an integer identifier for <i>obj</i>. The same number will
|
||||||
* be returned on all calls to <code>id</code> for a given object, and
|
* be returned on all calls to <code>id</code> for a given object, and
|
||||||
* no two active objects will share an id.
|
* no two active objects will share an id.
|
||||||
|
@ -2144,7 +2144,7 @@ id2ref(VALUE obj, VALUE objid)
|
||||||
/*
|
/*
|
||||||
* call-seq:
|
* call-seq:
|
||||||
* obj.hash => fixnum
|
* obj.hash => fixnum
|
||||||
*
|
*
|
||||||
* Generates a <code>Fixnum</code> hash value for this object. This
|
* Generates a <code>Fixnum</code> hash value for this object. This
|
||||||
* function must have the property that <code>a.eql?(b)</code> implies
|
* function must have the property that <code>a.eql?(b)</code> implies
|
||||||
* <code>a.hash == b.hash</code>. The hash value is used by class
|
* <code>a.hash == b.hash</code>. The hash value is used by class
|
||||||
|
|
Loading…
Reference in a new issue