home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Moscow ML 1.42 / src / !runtime / gc_ctrl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-18  |  285 b   |  18 lines  |  [TEXT/R*ch]

  1. #ifndef _gc_ctrl_
  2. #define _gc_ctrl_
  3.  
  4. #include "misc.h"
  5.  
  6. extern long
  7.      stat_minor_words,
  8.      stat_promoted_words,
  9.      stat_major_words,
  10.      stat_minor_collections,
  11.      stat_major_collections,
  12.      stat_heap_size;
  13.  
  14. void init_gc P((long, long, int, int));
  15.  
  16.  
  17. #endif /* _gc_ctrl_ */
  18.