[BACK]Return to ox.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2018 / io

Diff for /OpenXM_contrib2/asir2018/io/ox.c between version 1.3 and 1.4

version 1.3, 2019/12/13 14:40:50 version 1.4, 2020/02/02 05:13:30
Line 44 
Line 44 
  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY   * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  * $OpenXM: OpenXM_contrib2/asir2018/io/ox.c,v 1.2 2019/07/25 05:57:55 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2018/io/ox.c,v 1.3 2019/12/13 14:40:50 fujimoto Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 408  int check_by_mc(int s,unsigned int oxtag,unsigned int 
Line 408  int check_by_mc(int s,unsigned int oxtag,unsigned int 
     return 1;      return 1;
 }  }
   
   #if !defined(VISUAL_CONSOLE)
 extern int Im_ox_plot;  extern int Im_ox_plot;
 #if defined(ANDROID)  #if defined(ANDROID)
 int Im_ox_plot = 0;  int Im_ox_plot = 0;
 #endif  #endif
   #endif
   
 void begin_critical() {  void begin_critical() {
   critical_when_signal = 1;    critical_when_signal = 1;
Line 442  void ox_usr1_handler(int sig)
Line 444  void ox_usr1_handler(int sig)
 #if !defined(VISUAL) && !defined(__MINGW32__)  #if !defined(VISUAL) && !defined(__MINGW32__)
   set_signal_for_restart(SIGUSR1,ox_usr1_handler);    set_signal_for_restart(SIGUSR1,ox_usr1_handler);
 #endif  #endif
   #if !defined(VISUAL_CONSOLE)
   if ( Im_ox_plot ) {    if ( Im_ox_plot ) {
     ox_flushing = 1;      ox_flushing = 1;
     ox_send_sync(0);      ox_send_sync(0);
     return;      return;
   }    }
   #endif
   if ( critical_when_signal ) {    if ( critical_when_signal ) {
     fprintf(stderr,"usr1 : critical\n");      fprintf(stderr,"usr1 : critical\n");
     ox_usr1_sent = 1;      ox_usr1_sent = 1;

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

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