In Files

GC

The GC module provides an interface to Ruby’s mark and sweep garbage collection mechanism. Some of the underlying methods are also available via the ObjectSpace module.

You may obtain information about the operation of the GC through GC::Profiler.

Public Class Methods

count → Integer click to toggle source

The number of times GC occurred.

It returns the number of times GC occurred since the process started.

 
               static VALUE
gc_count(VALUE self)
{
    return UINT2NUM((&rb_objspace)->count);
}
            
disable → true or false click to toggle source

Disables garbage collection, returning true if garbage collection was already disabled.

GC.disable   #=> false
GC.disable   #=> true
 
               VALUE
rb_gc_disable(void)
{
    rb_objspace_t *objspace = &rb_objspace;
    int old = dont_gc;

    dont_gc = TRUE;
    return old ? Qtrue : Qfalse;
}
            
enable → true or false click to toggle source

Enables garbage collection, returning true if garbage collection was previously disabled.

GC.disable   #=> false
GC.enable    #=> true
GC.enable    #=> false
 
               VALUE
rb_gc_enable(void)
{
    rb_objspace_t *objspace = &rb_objspace;
    int old = dont_gc;

    dont_gc = FALSE;
    return old ? Qtrue : Qfalse;
}
            
malloc_allocated_size → Integer click to toggle source

The allocated size by malloc().

It returns the allocated size by malloc().

 
               static VALUE
gc_malloc_allocated_size(VALUE self)
{
    return UINT2NUM((&rb_objspace)->malloc_params.allocated_size);
}
            
malloc_allocations → Integer click to toggle source

The number of allocated memory object by malloc().

It returns the number of allocated memory object by malloc().

 
               static VALUE
gc_malloc_allocations(VALUE self)
{
    return UINT2NUM((&rb_objspace)->malloc_params.allocations);
}
            
start → nil click to toggle source
garbage_collect → nil
garbage_collect → nil

Initiates garbage collection, unless manually disabled.

 
               VALUE
rb_gc_start(void)
{
    rb_gc();
    return Qnil;
}
            
stat → Hash click to toggle source

Returns a Hash containing information about the GC.

The hash includes information about internal statistics about GC such as:

{
  :count          => 18,
  :heap_used      => 77,
  :heap_length    => 77,
  :heap_increment => 0,
  :heap_live_num  => 23287,
  :heap_free_num  => 8115,
  :heap_final_num => 0,
}

The contents of the hash are implementation defined and may be changed in the future.

This method is only expected to work on C Ruby.

 
               static VALUE
gc_stat(int argc, VALUE *argv, VALUE self)
{
    rb_objspace_t *objspace = &rb_objspace;
    VALUE hash;

    if (rb_scan_args(argc, argv, "01", &hash) == 1) {
        if (TYPE(hash) != T_HASH)
            rb_raise(rb_eTypeError, "non-hash given");
    }

    if (hash == Qnil) {
        hash = rb_hash_new();
    }

    rest_sweep(objspace);

    rb_hash_aset(hash, ID2SYM(rb_intern("count")), SIZET2NUM(objspace->count));

    /* implementation dependent counters */
    rb_hash_aset(hash, ID2SYM(rb_intern("heap_used")), SIZET2NUM(objspace->heap.used));
    rb_hash_aset(hash, ID2SYM(rb_intern("heap_length")), SIZET2NUM(objspace->heap.length));
    rb_hash_aset(hash, ID2SYM(rb_intern("heap_increment")), SIZET2NUM(objspace->heap.increment));
    rb_hash_aset(hash, ID2SYM(rb_intern("heap_live_num")), SIZET2NUM(objspace->heap.live_num));
    rb_hash_aset(hash, ID2SYM(rb_intern("heap_free_num")), SIZET2NUM(objspace->heap.free_num));
    rb_hash_aset(hash, ID2SYM(rb_intern("heap_final_num")), SIZET2NUM(objspace->heap.final_num));
    return hash;
}
            
stress → true or false click to toggle source

returns current status of GC stress mode.

 
               static VALUE
gc_stress_get(VALUE self)
{
    rb_objspace_t *objspace = &rb_objspace;
    return ruby_gc_stress ? Qtrue : Qfalse;
}
            
stress = bool → bool click to toggle source

Updates the GC stress mode.

When stress mode is enabled the GC is invoked at every GC opportunity: all memory and object allocations.

Enabling stress mode makes Ruby very slow, it is only for debugging.

 
               static VALUE
gc_stress_set(VALUE self, VALUE flag)
{
    rb_objspace_t *objspace = &rb_objspace;
    rb_secure(2);
    ruby_gc_stress = RTEST(flag);
    return flag;
}
            

Public Instance Methods

start → nil click to toggle source
garbage_collect → nil
garbage_collect → nil

Initiates garbage collection, unless manually disabled.

 
               VALUE
rb_gc_start(void)
{
    rb_gc();
    return Qnil;
}
            

Commenting is here to help enhance the documentation. For example, sample code, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

blog comments powered by Disqus