report(p1 = v1)
Writes the GC::Profiler.result to $stdout or the given IO object.
static VALUE gc_profile_report(int argc, VALUE *argv, VALUE self) { VALUE out; if (argc == 0) { out = rb_stdout; } else { rb_scan_args(argc, argv, "01", &out); } gc_profile_dump_on(out, rb_io_write); return Qnil; }