[BACK]Return to gc_risa.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/gc_risa.c between version 1.3 and 1.4

version 1.3, 2007/11/11 15:54:03 version 1.4, 2009/02/05 08:37:02
Line 186  double get_clock()
Line 186  double get_clock()
 #endif  #endif
 #endif  #endif
   
   extern int GC_free_space_numerator;
   
   void Risa_GC_get_adj(int *nm, int *dn) {
           *nm = GC_free_space_numerator;
           *dn = GC_free_space_divisor;
   }
   
   void Risa_GC_set_adj(int nm, int dn) {
           GC_free_space_numerator = nm;
           GC_free_space_divisor = dn;
   }
   
 void GC_timerstart() {  void GC_timerstart() {
         gcstart = get_clock();          gcstart = get_clock();
 }  }

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>