1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/**************************************************************************/
/* */
/* OCaml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
/* en Automatique. */
/* */
/* All rights reserved. This file is distributed under the terms of */
/* the GNU Lesser General Public License version 2.1, with the */
/* special exception on linking described in the file LICENSE. */
/* */
/**************************************************************************/
#include <caml/mlvalues.h>
#include <caml/memory.h>
#define CAML_INTERNALS
#include <caml/osdeps.h>
#include "unixsupport.h"
#ifndef _WIN32
extern char ** environ;
#endif
CAMLprim value unix_execvp(value path, value args)
{
char ** argv;
caml_unix_check_path(path, "execvp");
argv = cstringvect(args, "execvp");
(void) execvp(String_val(path), argv);
caml_stat_free((char *) argv);
uerror("execvp", path);
return Val_unit; /* never reached, but suppress warnings */
/* from smart compilers */
}
CAMLprim value unix_execvpe(value path, value args, value env)
{
const char * exefile;
char ** argv;
char ** envp;
caml_unix_check_path(path, "execvpe");
exefile = caml_search_exe_in_path(String_val(path));
argv = cstringvect(args, "execvpe");
envp = cstringvect(env, "execvpe");
(void) execve(exefile, argv, envp);
caml_stat_free((char *)exefile);
caml_stat_free((char *) argv);
caml_stat_free((char *) envp);
uerror("execvpe", path);
return Val_unit; /* never reached, but suppress warnings */
/* from smart compilers */
}
|