version 1.13, 2001/12/25 02:39:06 |
version 1.15, 2001/12/28 02:17:33 |
|
|
* 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/main.c,v 1.12 2001/12/20 08:18:27 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/parse/main.c,v 1.14 2001/12/27 07:51:17 noro Exp $ |
*/ |
*/ |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.h" |
|
|
#if PARI |
#if PARI |
#include "genpari.h" |
#include "genpari.h" |
|
|
extern JMP_BUF environnement; |
/* XXX : environment is defined in libpari.a */ |
|
extern jmp_buf environnement; |
#endif |
#endif |
|
|
extern JMP_BUF main_env; |
extern JMP_BUF main_env; |
Line 120 main(int argc,char *argv[]) |
|
Line 121 main(int argc,char *argv[]) |
|
binname = slash+1; |
binname = slash+1; |
else |
else |
binname = argv[0]; |
binname = argv[0]; |
if ( !strcmp(binname,"ox_asir") ) { |
if ( !strncmp(binname,"ox_asir",strlen("ox_asir")) ) { |
/* never return */ |
/* never return */ |
ox_main(argc,argv); |
ox_main(argc,argv); |
exit(0); |
exit(0); |
#if DO_PLOT |
#if DO_PLOT |
} else if ( !strcmp(binname,"ox_plot") ) { |
} else if ( !strncmp(binname,"ox_plot",strlen("ox_plot")) ) { |
/* never return */ |
/* never return */ |
ox_plot_main(argc,argv); |
ox_plot_main(argc,argv); |
exit(0); |
exit(0); |
#endif |
#endif |
} else if ( !strcmp(binname,"ox_launch") ) { |
} else if ( !strncmp(binname,"ox_launch",strlen("ox_launch")) ) { |
/* never return */ |
/* never return */ |
launch_main(argc,argv); |
launch_main(argc,argv); |
exit(0); |
exit(0); |
Line 198 main(int argc,char *argv[]) |
|
Line 199 main(int argc,char *argv[]) |
|
while ( 1 ) { |
while ( 1 ) { |
#if PARI |
#if PARI |
recover(0); |
recover(0); |
if ( SETJMP(environnement) ) { |
/* XXX environement is defined in libpari.a */ |
|
if ( setjmp(environnement) ) { |
avma = top; recover(1); |
avma = top; recover(1); |
resetenv(""); |
resetenv(""); |
} |
} |