=================================================================== RCS file: /home/cvs/OpenXM/src/util/ox_pathfinder.c,v retrieving revision 1.28 retrieving revision 1.33 diff -u -p -r1.28 -r1.33 --- OpenXM/src/util/ox_pathfinder.c 2004/10/14 10:08:09 1.28 +++ OpenXM/src/util/ox_pathfinder.c 2015/08/06 22:33:21 1.33 @@ -1,4 +1,4 @@ -/* $OpenXM: OpenXM/src/util/ox_pathfinder.c,v 1.27 2004/08/12 12:11:41 takayama Exp $ */ +/* $OpenXM: OpenXM/src/util/ox_pathfinder.c,v 1.32 2015/08/03 20:56:50 takayama Exp $ */ /* Moved from misc-2003/07/cygwin/test.c */ #include @@ -7,13 +7,19 @@ #include #include #include +#if (!defined(__MINGW32__) && !defined(__MINGW64__)) #include +#else +#include <_mingw.h> +#endif #include #include #include #include #include "ox_pathfinder.h" +void *sGC_malloc(int); + int OX_P_stdin = -1; int OX_P_stdout = -1; int OX_P_stderr = -1; @@ -38,8 +44,9 @@ static int Verbose_get_home = 0; static int Verbose = 1; static int NoX = 0; static int ErrorVerbose = 1; +static int EngineLogToStdout = 0; -#define nomemory(a) {fprintf(stderr,"(%d) no more memory.\n",a);exit(10);} +#define nomemory(a) {fprintf(stderr,"(%p) no more memory.\n",(void *)a);exit(10);} #define mymalloc(a) sGC_malloc(a) void pathFinderErrorVerbose(int k) { @@ -121,6 +128,7 @@ void *sGC_malloc(int s) { return (void *) malloc(s); } #define MYFORKCP_SIZE 100 static int Myforkchildren[MYFORKCP_SIZE]; static int Myforkcp=0; +#if (!defined(__MINGW32__) && !defined(__MINGW64__)) static void myforkwait() { int status; int pid; @@ -170,7 +178,7 @@ int oxForkExec(char **argv) { sigaddset(&sss,SIGINT); sigprocmask(SIG_BLOCK,&sss,NULL); } - if (NoX) { + if (NoX && (!EngineLogToStdout)) { FILE *null; null = fopen("/dev/null","wb"); if (OX_P_stdout >= 0) dup2(OX_P_stdout,1); else dup2(fileno(null),1); @@ -215,7 +223,7 @@ int oxForkExecBlocked(char **argv) { sigaddset(&sss,SIGINT); sigprocmask(SIG_BLOCK,&sss,NULL); } - if (NoX) { + if (NoX && (!EngineLogToStdout)) { FILE *null; null = fopen("/dev/null","wb"); if (OX_P_stdout >= 0) dup2(OX_P_stdout,1); else dup2(fileno(null),1); @@ -231,6 +239,21 @@ int oxForkExecBlocked(char **argv) { exit(3); } } +#else +static void myforkwait() { + fprintf(stderr,"ERROR: myforkwait is not implented in mingw\n"); + return; +} +int oxForkExec(char **argv) { + /* cf. Kan/shell.c */ + fprintf(stderr,"ERROR: oxForkExec is not implented in mingw\n"); + return(-1); +} +int oxForkExecBlocked(char **argv) { + fprintf(stderr,"ERROR: oxForkExecBlocked is not implented in mingw\n"); + return(-1); +} +#endif static int getOStypei() { /* @@ -571,7 +594,11 @@ char *cygwinPathToWinPath(char *s) { } if (ans[0] == '/') { +#if defined(__CYGWIN64__) + strcpy(ans,"C:\\cygwin64"); +#else strcpy(ans,"C:\\cygwin"); +#endif strcat(ans,s); } @@ -1020,7 +1047,7 @@ char *getCommandPath(char *cmdname) if (getFileSize(cmdname) >= 0) { /* Todo: isExecutableFile() */ }else{ msg = (char *)mymalloc(strlen(cmdname)+30); - sprintf(msg,"getCommandPath: %s is not found."); + sprintf(msg,"getCommandPath: %s is not found.",cmdname); errorPathFinder(msg); return NULL; } @@ -1132,6 +1159,7 @@ int oxDeleteFile(char *fname) { /* This function just kills processes, so if there is a process which uses ox protocol, it is not relevant to use this functions. */ +#if (!defined(__MINGW32__) && !defined(__MINGW64__)) int oxKillAll(void) { int i; int pid; @@ -1146,7 +1174,12 @@ int oxKillAll(void) { Myforkcp = 0; return(0); } - +#else +int oxKillAll(void) { + fprintf(stderr,"ERROR: oxKillAll is not implented in mingw\n"); + return(-1); +} +#endif void ox_pathfinder_quiet(void) { Verbose_get_home = 0; Verbose = 0; @@ -1204,3 +1237,7 @@ int oxpSendStringAsFile(char *user,char *hostname, cha char *oxpReadOneTimePasswordFromFile(char *filename) { } + +int ox_pathfinderEngineLogToStdout(int state) { + EngineLogToStdout = state; +}