static public Method

ObjectSpace.call_finalizer(p1)

deprecated

Source Code

/*
* deprecated
*/

static VALUE
call_final(os, obj)
   VALUE os, obj;
{
   rb_warn("ObjectSpace::call_finalizer is deprecated; use define_finalizer");
   need_call_final = 1;
   FL_SET(obj, FL_FINALIZE);
   return obj;
}
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.