blob: 0bb2da9b1fd8c9206cee98d957819d4cac1df57b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* ISC license. */
#include <skalibs/socket.h>
#include <skalibs/djbunix.h>
#include "djbunix-internal.h"
pid_t child_spawn1_socket (char const *prog, char const *const *argv, char const *const *envp, int *fd)
{
pid_t pid ;
int p[2] ;
if (ipc_pair_b(p) < 0) return 0 ;
pid = child_spawn1_internal(prog, argv, envp, p, 3) ;
if (!pid) return 0 ;
*fd = p[0] ;
return pid ;
}
|