blob: 8e28fa067d49eb8f4a63b54cd759f88b9484f9a7 (
plain)
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
|
/***********************************************************************/
/* */
/* 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 Library General Public License, with */
/* the special exception on linking described in file ../../LICENSE. */
/* */
/***********************************************************************/
#include <mlvalues.h>
#include <memory.h>
#include "unixsupport.h"
extern char ** cstringvect();
#ifndef _WIN32
extern char ** environ;
#endif
CAMLprim value unix_execvp(value path, value args)
{
char ** argv;
argv = cstringvect(args);
(void) execvp(String_val(path), argv);
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)
{
char ** argv;
char ** saved_environ;
argv = cstringvect(args);
saved_environ = environ;
environ = cstringvect(env);
(void) execvp(String_val(path), argv);
stat_free((char *) argv);
stat_free((char *) environ);
environ = saved_environ;
uerror("execvp", path);
return Val_unit; /* never reached, but suppress warnings */
/* from smart compilers */
}
|