[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.17 and 1.18

version 1.17, 2017/08/30 09:40:30 version 1.18, 2018/03/12 02:37:08
Line 1 
Line 1 
 /* $OpenXM: OpenXM_contrib2/asir2000/parse/gc_risa.c,v 1.16 2015/08/14 13:51:56 fujimoto Exp $ */  /* $OpenXM: OpenXM_contrib2/asir2000/parse/gc_risa.c,v 1.17 2017/08/30 09:40:30 ohara Exp $ */
   
 #if defined(VISUAL) || defined(__MINGW32__)  #if defined(VISUAL) || defined(__MINGW32__)
 #include "private/gcconfig.h"  #include "private/gcconfig.h"
Line 15  int in_gc, caught_intr;
Line 15  int in_gc, caught_intr;
   
 void check_caught_intr()  void check_caught_intr()
 {  {
         if ( caught_intr ) {          if ( caught_intr == 1 ) {
                 caught_intr = 0;                  caught_intr = 0;
                 int_handler(SIGINT);                  int_handler(SIGINT);
         }          } else if ( caught_intr == 2 ) {
                   caught_intr = 0;
                   ox_usr1_handler(SIGUSR1);
       }
 }  }
   
 void *Risa_GC_malloc(size_t d)  void *Risa_GC_malloc(size_t d)

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

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