blob: 1abfbe990701678d9d03fa74ee9b151fceb9a871 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*******************************************************************/
/* slibtool: a skinny libtool implementation, written in C */
/* Copyright (C) 2016 Z. Gilboa */
/* Released under the Standard MIT License; see COPYING.SLIBTOOL. */
/*******************************************************************/
#include <limits.h>
#include <unistd.h>
#include <stdbool.h>
#include <errno.h>
#include <sys/wait.h>
#ifndef PATH_MAX
#define PATH_MAX (_XOPEN_PATH_MAX < 4096) ? 4096 : _XOPEN_PATH_MAX
#endif
#ifndef SLBT_USE_FORK
#ifndef SLBT_USE_VFORK
#ifndef SLBT_USE_POSIX_SPAWN
#define SLBT_USE_POSIX_SPAWN
#endif
#endif
#endif
#ifdef SLBT_USE_POSIX_SPAWN
#include <spawn.h>
#endif
extern char ** environ;
static inline int slbt_spawn(
struct slbt_exec_ctx * ectx,
bool fwait)
{
pid_t pid;
#ifdef SLBT_USE_POSIX_SPAWN
if (posix_spawnp(
&pid,
ectx->program,
0,0,
ectx->argv,
ectx->envp ? ectx->envp : environ))
pid = -1;
#else
#ifdef SLBT_USE_FORK
pid = fork();
#else
pid = vfork();
#endif
#endif
if (pid < 0)
return -1;
if (pid == 0)
return execvp(
ectx->program,
ectx->argv);
errno = 0;
ectx->pid = pid;
if (fwait)
return waitpid(
pid,
&ectx->exitcode,
0);
return 0;
}
|