| version 1.21, 2003/12/06 02:49:22 |
version 1.26, 2004/09/09 08:50:12 |
|
|
| /* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.20 2003/12/04 07:49:24 takayama Exp $ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/ext.c,v 1.25 2004/09/09 03:14: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> |
|
|
| #include "plugin.h" |
#include "plugin.h" |
| #include "kclass.h" |
#include "kclass.h" |
| #include <ctype.h> |
#include <ctype.h> |
| |
#include <errno.h> |
| #include "ox_pathfinder.h" |
#include "ox_pathfinder.h" |
| |
|
| |
extern int Quiet; |
| extern char **environ; |
extern char **environ; |
| |
|
| #define MYCP_SIZE 100 |
#define MYCP_SIZE 100 |
| static int Mychildren[MYCP_SIZE]; |
static int Mychildren[MYCP_SIZE]; |
| static int Mycp = 0; |
static int Mycp = 0; |
| |
static int Verbose_mywait = 0; |
| static void mywait() { |
static void mywait() { |
| int status; |
int status; |
| int pid; |
int pid; |
| int i,j; |
int i,j; |
| /* signal(SIGCHLD,SIG_IGN); */ |
/* signal(SIGCHLD,SIG_IGN); */ |
| pid = wait(&status); |
pid = wait(&status); |
| fprintf(stderr,"Child process %d is exiting.\n",pid); |
if ((!Quiet) && (Verbose_mywait)) fprintf(stderr,"Child process %d is exiting.\n",pid); |
| for (i=0; i<Mycp; i++) { |
for (i=0; i<Mycp; i++) { |
| if (Mychildren[i] == pid) { |
if (Mychildren[i] == pid) { |
| for (j=i; j<Mycp-1; j++) { |
for (j=i; j<Mycp-1; j++) { |
| Line 103 struct object Kextension(struct object obj) |
|
| Line 106 struct object Kextension(struct object obj) |
|
| #endif |
#endif |
| extern void ctrlC(); |
extern void ctrlC(); |
| extern int SigIgn; |
extern int SigIgn; |
| extern errno; |
|
| extern int DebugCMO; |
extern int DebugCMO; |
| extern int OXprintMessage; |
extern int OXprintMessage; |
| struct stat buf; |
struct stat buf; |
| Line 363 struct object Kextension(struct object obj) |
|
| Line 365 struct object Kextension(struct object obj) |
|
| obj1 = getoa(obj,1); |
obj1 = getoa(obj,1); |
| obj2 = getoa(obj,2); |
obj2 = getoa(obj,2); |
| rob = KooPower(obj1,obj2); |
rob = KooPower(obj1,obj2); |
| |
}else if (strcmp(key,"Krest")==0) { |
| |
if (size != 2) errorKan1("%s\n","[(Krest) a] extension b"); |
| |
obj1 = getoa(obj,1); |
| |
rob = Krest(obj1); |
| |
}else if (strcmp(key,"Kjoin")==0) { |
| |
if (size != 3) errorKan1("%s\n","[(Kjoin) a b] extension c"); |
| |
obj1 = getoa(obj,1); |
| |
obj2 = getoa(obj,2); |
| |
rob = Kjoin(obj1,obj2); |
| }else if (strcmp(key,"ostype")==0) { |
}else if (strcmp(key,"ostype")==0) { |
| rob = newObjectArray(1); |
rob = newObjectArray(1); |
| /* Hard encode the OS type. */ |
/* Hard encode the OS type. */ |
| Line 371 struct object Kextension(struct object obj) |
|
| Line 382 struct object Kextension(struct object obj) |
|
| #else |
#else |
| putoa(rob,0,KpoString("unix")); |
putoa(rob,0,KpoString("unix")); |
| #endif |
#endif |
| |
}else if (strcmp(key,"traceClearStack")==0) { |
| |
traceClearStack(); |
| |
rob = NullObject; |
| |
}else if (strcmp(key,"traceShowStack")==0) { |
| |
char *ssst; |
| |
ssst = traceShowStack(); |
| |
if (ssst != NULL) { |
| |
rob = KpoString(ssst); |
| |
}else{ |
| |
rob = NullObject; |
| |
} |
| } |
} |
| #include "plugin.hh" |
#include "plugin.hh" |
| #include "Kclass/tree.hh" |
#include "Kclass/tree.hh" |