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

Diff for /OpenXM_contrib2/asir2000/io/ox.c between version 1.15 and 1.20

version 1.15, 2002/08/02 02:28:27 version 1.20, 2003/03/07 03:12:28
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/asir2000/io/ox.c,v 1.14 2002/07/25 04:47:41 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/io/ox.c,v 1.19 2003/02/14 22:29:15 ohara Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 125  static int available_cmo[] = {
Line 125  static int available_cmo[] = {
         0          0
 };  };
   
   static int asir_available_sm[] = {
           SM_dupErrors, SM_getsp, SM_popSerializedLocalObject,
           SM_popCMO, SM_popString, SM_pushCMOtag, SM_setName,
           SM_evalName, SM_executeStringByLocalParser,
           SM_executeStringByLocalParserInBatchMode,
           SM_executeFunction, SM_shutdown, SM_pops,
           SM_mathcap, SM_setMathcap, SM_nop,
           SM_beginBlock, SM_endBlock,
           0
   };
   
 static int ox_asir_available_sm[] = {  static int ox_asir_available_sm[] = {
         SM_dupErrors, SM_getsp, SM_popSerializedLocalObject,          SM_dupErrors, SM_getsp, SM_popSerializedLocalObject,
         SM_popCMO, SM_popString, SM_pushCMOtag, SM_setName,          SM_popCMO, SM_popString, SM_pushCMOtag, SM_setName,
Line 141  static int ox_plot_available_sm[] = {
Line 152  static int ox_plot_available_sm[] = {
         SM_popCMO, SM_popString, SM_setName,          SM_popCMO, SM_popString, SM_setName,
         SM_evalName, SM_executeStringByLocalParser,          SM_evalName, SM_executeStringByLocalParser,
         SM_executeFunction, SM_shutdown, SM_pops,          SM_executeFunction, SM_shutdown, SM_pops,
         SM_mathcap, SM_setMathcap,          SM_mathcap, SM_setMathcap, SM_nop,
         0          0
 };  };
   
Line 175  void create_my_mathcap(char *system)
Line 186  void create_my_mathcap(char *system)
   
         /* sm tag */          /* sm tag */
         n0 = 0;          n0 = 0;
         if ( !strcmp(system,"ox_asir") ) {          if ( !strcmp(system,"asir") ) {
                   for ( i = 0; k = asir_available_sm[i]; i++ ) {
                           NEXTNODE(n0,n); MKUSINT(t,k); BDY(n) = (pointer)t;
                   }
           } else if ( !strcmp(system,"ox_asir") ) {
                 for ( i = 0; k = ox_asir_available_sm[i]; i++ ) {                  for ( i = 0; k = ox_asir_available_sm[i]; i++ ) {
                         NEXTNODE(n0,n); MKUSINT(t,k); BDY(n) = (pointer)t;                          NEXTNODE(n0,n); MKUSINT(t,k); BDY(n) = (pointer)t;
                 }                  }
Line 385  void end_critical() {
Line 400  void end_critical() {
         }          }
 }  }
   
   extern FUNC registered_handler;
   
 void ox_usr1_handler(int sig)  void ox_usr1_handler(int sig)
 {  {
 #if !defined(VISUAL)  #if !defined(VISUAL)
Line 395  void ox_usr1_handler(int sig)
Line 412  void ox_usr1_handler(int sig)
                 ox_usr1_sent = 1;                  ox_usr1_sent = 1;
         } else {          } else {
                 ox_flushing = 1;                  ox_flushing = 1;
                   if ( registered_handler ) {
                           fprintf(stderr,
                                   "usr1 : calling the registered exception handler...");
                           bevalf(registered_handler,0);
                           fprintf(stderr, "done.\n");
                   }
                 ox_resetenv("usr1 : return to toplevel by SIGUSR1");                  ox_resetenv("usr1 : return to toplevel by SIGUSR1");
         }          }
 }  }

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.20

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