| version 1.7, 2001/08/10 13:48:38 |
version 1.9, 2002/02/24 10:27:18 |
|
|
| /* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.6 2001/08/09 22:13:58 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.8 2001/08/21 14:12:46 takayama Exp $ */ |
| #include <stdio.h> |
#include <stdio.h> |
| #include <sys/types.h> |
#include <sys/types.h> |
| #include <sys/stat.h> |
#include <sys/stat.h> |
| Line 35 static void mywait() { |
|
| Line 35 static void mywait() { |
|
| } |
} |
| |
|
| #define SIZE_OF_ENVSTACK 5 |
#define SIZE_OF_ENVSTACK 5 |
| static jmp_buf EnvStack[SIZE_OF_ENVSTACK]; |
#if defined(__CYGWIN__) |
| |
#define JMP_BUF sigjmp_buf |
| |
#else |
| |
#define JMP_BUF jmp_buf |
| |
#endif |
| |
static JMP_BUF EnvStack[SIZE_OF_ENVSTACK]; |
| static int Envp = 0; |
static int Envp = 0; |
| static void pushEnv(jmp_buf jb) { |
static void pushEnv(JMP_BUF jb) { |
| if (Envp < SIZE_OF_ENVSTACK) { |
if (Envp < SIZE_OF_ENVSTACK) { |
| *(EnvStack[Envp]) = *jb; |
*(EnvStack[Envp]) = *jb; |
| Envp++; |
Envp++; |
| Line 46 static void pushEnv(jmp_buf jb) { |
|
| Line 51 static void pushEnv(jmp_buf jb) { |
|
| exit(2); |
exit(2); |
| } |
} |
| } |
} |
| static void popEnv(jmp_buf jbp) { |
static void popEnv(JMP_BUF jbp) { |
| if (Envp <= 0) { |
if (Envp <= 0) { |
| fprintf(stderr,"Underflow of EnvStack.\n"); |
fprintf(stderr,"Underflow of EnvStack.\n"); |
| exit(3); |
exit(3); |
| Line 86 struct object Kextension(struct object obj) |
|
| Line 91 struct object Kextension(struct object obj) |
|
| char *abc; |
char *abc; |
| char *abc2; |
char *abc2; |
| extern struct context *CurrentContextp; |
extern struct context *CurrentContextp; |
| |
#if (__CYGWIN__) |
| |
extern sigjmp_buf EnvOfStackMachine; |
| |
#else |
| extern jmp_buf EnvOfStackMachine; |
extern jmp_buf EnvOfStackMachine; |
| |
#endif |
| extern void ctrlC(); |
extern void ctrlC(); |
| extern int SigIgn; |
extern int SigIgn; |
| extern errno; |
extern errno; |
| Line 279 struct object Kextension(struct object obj) |
|
| Line 288 struct object Kextension(struct object obj) |
|
| errorKan1("%s\n","The number must be 0, 1 or 2."); |
errorKan1("%s\n","The number must be 0, 1 or 2."); |
| putUserDictionary2(obj2.lc.str,(obj2.rc.op->lc).ival,(obj2.rc.op->rc).ival, |
putUserDictionary2(obj2.lc.str,(obj2.rc.op->lc).ival,(obj2.rc.op->rc).ival, |
| m,CurrentContextp->userDictionary); |
m,CurrentContextp->userDictionary); |
| |
}else if (strcmp(key,"ostype")==0) { |
| |
rob = newObjectArray(1); |
| |
/* Hard encode the OS type. */ |
| |
#if defined(__CYGWIN__) |
| |
putoa(rob,0,KpoString("windows")); |
| |
#else |
| |
putoa(rob,0,KpoString("unix")); |
| |
#endif |
| } |
} |
| #include "plugin.hh" |
#include "plugin.hh" |
| else{ |
else{ |