Revision: 3419 http://trac.macosforge.org/projects/ruby/changeset/3419 Author: lsansonetti@apple.com Date: 2010-02-02 18:36:08 -0800 (Tue, 02 Feb 2010) Log Message: ----------- GC.count: deleted implementation, marked as not-implemented Modified Paths: -------------- MacRuby/trunk/gc.c Modified: MacRuby/trunk/gc.c =================================================================== --- MacRuby/trunk/gc.c 2010-02-03 02:29:13 UTC (rev 3418) +++ MacRuby/trunk/gc.c 2010-02-03 02:36:08 UTC (rev 3419) @@ -1015,13 +1015,7 @@ * */ -static VALUE -gc_count(VALUE self) -{ - auto_statistics_t stats; - auto_zone_statistics(__auto_zone, &stats); - return UINT2NUM(stats.num_collections[0] + stats.num_collections[1]); -} +#define gc_count rb_f_notimplement /* * The <code>GC</code> module provides an interface to Ruby's mark and