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

Diff for /OpenXM_contrib2/asir2000/parse/glob.c between version 1.12 and 1.16

version 1.12, 2000/12/05 01:24:57 version 1.16, 2001/03/19 00:44:02
Line 45 
Line 45 
  * 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/asir2000/parse/glob.c,v 1.11 2000/11/08 06:21:18 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/glob.c,v 1.15 2001/03/16 01:54:55 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "al.h"  #include "al.h"
Line 94  FILE *ox_istream,*ox_ostream;
Line 94  FILE *ox_istream,*ox_ostream;
 int do_server_in_X11;  int do_server_in_X11;
 Obj LastVal;  Obj LastVal;
 char LastError[BUFSIZ];  char LastError[BUFSIZ];
   int timer_is_set;
   
   
 struct oV oVAR[] = {  struct oV oVAR[] = {
         {"x",0,0}, {"y",0,0}, {"z",0,0}, {"u",0,0},          {"x",0,0}, {"y",0,0}, {"z",0,0}, {"u",0,0},
         {"v",0,0}, {"w",0,0}, {"p",0,0}, {"q",0,0},          {"v",0,0}, {"w",0,0}, {"p",0,0}, {"q",0,0},
Line 219  int status;
Line 221  int status;
                         fputc(0xff,asir_out);                          fputc(0xff,asir_out);
                 if ( asir_out )                  if ( asir_out )
                         fflush(asir_out);                          fflush(asir_out);
   #if FEP
                   if ( do_fep ) {
                           stifle_history(MAXHIST);
                           write_history(asir_history);
                   }
   #endif
                 ExitAsir();                  ExitAsir();
         }          }
 }  }
Line 297  char **av;
Line 305  char **av;
                 } else if ( !strcmp(*av,"-display") && (ac >= 2) ) {                  } else if ( !strcmp(*av,"-display") && (ac >= 2) ) {
                         strcpy(displayname,*(av+1)); av += 2; ac -= 2;                          strcpy(displayname,*(av+1)); av += 2; ac -= 2;
 #endif  #endif
   #if FEP
                   } else if ( !strcmp(*av,"-fep") ) {
                           do_fep = 1; av++; ac--;
   #endif
 #if PARI  #if PARI
                 } else if ( !strcmp(*av,"-paristack") ) {                  } else if ( !strcmp(*av,"-paristack") ) {
                         extern int paristack;                          extern int paristack;
Line 308  char **av;
Line 320  char **av;
                         asir_terminate(1);                          asir_terminate(1);
                 }                  }
         }          }
   #if FEP
           if ( do_fep ) {
                   char *home;
                   home = (char *)getenv("HOME");
                   if (!home)
                           home = ".";
                   sprintf (asir_history, "%s/.asir_history",home);
                   read_history(asir_history);
                   using_history();
           }
   #endif
 }  }
   
 #include <signal.h>  #include <signal.h>
Line 375  char *s;
Line 398  char *s;
         /* restore states */          /* restore states */
         reset_engine();          reset_engine();
         reset_io();          reset_io();
   #if !defined(VISUAL)
           reset_timer();
   #endif
         longjmp(env,1);          longjmp(env,1);
 }  }
   
Line 585  char *s;
Line 611  char *s;
 {  {
         SNODE *snp;          SNODE *snp;
   
   #if !defined(VISUAL)
           if ( timer_is_set )
                   alrm_handler(SIGVTALRM);
   #endif
         fprintf(stderr,"%s\n",s);          fprintf(stderr,"%s\n",s);
         set_lasterror(s);          set_lasterror(s);
         if ( CPVS != GPVS ) {          if ( CPVS != GPVS ) {
Line 628  int interval;
Line 658  int interval;
         it.it_value.tv_usec = 0;          it.it_value.tv_usec = 0;
         setitimer(ITIMER_VIRTUAL,&it,0);          setitimer(ITIMER_VIRTUAL,&it,0);
         signal(SIGVTALRM,alrm_handler);          signal(SIGVTALRM,alrm_handler);
           timer_is_set = 1;
 }  }
   
 void reset_timer()  void reset_timer()
Line 640  void reset_timer()
Line 671  void reset_timer()
         it.it_value.tv_usec = 0;          it.it_value.tv_usec = 0;
         setitimer(ITIMER_VIRTUAL,&it,0);          setitimer(ITIMER_VIRTUAL,&it,0);
         signal(SIGVTALRM,SIG_IGN);          signal(SIGVTALRM,SIG_IGN);
           timer_is_set = 0;
 }  }
 #endif  #endif
   
 unsigned int get_asir_version();  unsigned int get_asir_version();
   char *get_asir_distribution();
   
 void copyright() {  void copyright() {
         printf("This is Risa/Asir, Version %d.\n",get_asir_version());          printf("This is Risa/Asir, Version %d (%s Distribution).\n",
         printf("Copyright (C) FUJITSU LABORATORIES LIMITED.\n");                  get_asir_version(), get_asir_distribution());
         printf("1994-2000. All rights reserved.\n");          printf("Copyright (C) 1994-2000, all rights reserved, FUJITSU LABORATORIES LIMITED.\n");
           printf("Copyright 2000,2001, Risa/Asir committers, http://www.openxm.org/.\n");
           printf("GC 5.3, copyright 1999, H-J. Boehm, A. J. Demers, Xerox, SGI, HP.\n");
           printf("PARI 2.0.17(beta), copyright (C) 1989-1999,\n");
           printf("     C. Batut, K. Belabas, D. Bernardi, H. Cohen and M. Olivier.\n");
 }  }
   
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.16

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