1996-09-04 07:17:43 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy and Pascal Cuoq, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 1996 Institut National de Recherche en Informatique et */
|
|
|
|
/* Automatique. Distributed only by permission. */
|
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <mlvalues.h>
|
|
|
|
#include "unixsupport.h"
|
|
|
|
|
1996-09-17 07:43:05 -07:00
|
|
|
/* From the Caml runtime */
|
|
|
|
extern char * searchpath(char * name);
|
|
|
|
|
|
|
|
value win_create_process_native(cmd, cmdline, env, fd1, fd2, fd3)
|
|
|
|
value cmd, cmdline, env, fd1, fd2, fd3;
|
1996-09-04 07:17:43 -07:00
|
|
|
{
|
|
|
|
PROCESS_INFORMATION pi;
|
|
|
|
STARTUPINFO si;
|
1996-09-17 07:43:05 -07:00
|
|
|
char * exefile, * envp;
|
1996-09-04 07:17:43 -07:00
|
|
|
|
1996-09-17 07:43:05 -07:00
|
|
|
exefile = searchpath(String_val(cmd));
|
|
|
|
if (exefile == NULL) exefile = String_val(cmd);
|
1996-09-04 07:17:43 -07:00
|
|
|
if (env != Val_int(0)) {
|
|
|
|
envp = String_val(Field(env, 0));
|
|
|
|
} else {
|
|
|
|
envp = NULL;
|
|
|
|
}
|
|
|
|
GetStartupInfo(&si);
|
|
|
|
si.dwFlags |= STARTF_USESTDHANDLES;
|
|
|
|
|
1996-09-05 06:32:25 -07:00
|
|
|
si.hStdInput = (HANDLE) _get_osfhandle(Int_val(fd1));
|
|
|
|
si.hStdOutput = (HANDLE) _get_osfhandle(Int_val(fd2));
|
|
|
|
si.hStdError = (HANDLE) _get_osfhandle(Int_val(fd3));
|
1996-09-17 07:43:05 -07:00
|
|
|
if (! CreateProcess(exefile, String_val(cmdline), NULL, NULL,
|
1996-09-04 07:17:43 -07:00
|
|
|
TRUE, 0, envp, NULL, &si, &pi)) {
|
|
|
|
_dosmaperr(GetLastError());
|
1996-09-17 07:43:05 -07:00
|
|
|
uerror("create_process", exefile);
|
1996-09-04 07:17:43 -07:00
|
|
|
}
|
|
|
|
return Val_int(pi.hProcess);
|
|
|
|
}
|
|
|
|
|
1997-03-11 02:38:06 -08:00
|
|
|
value win_create_process(argv, argn) /* ML */
|
1997-05-19 08:42:21 -07:00
|
|
|
value * argv;
|
|
|
|
int argn;
|
1996-09-04 07:17:43 -07:00
|
|
|
{
|
|
|
|
return win_create_process_native(argv[0], argv[1], argv[2],
|
|
|
|
argv[3], argv[4], argv[5]);
|
|
|
|
}
|