Factor fork()/exec() work into a spawn() like function.
commit0400c502c3dff7810175e364ab9422552a83ec19
authorJohannes Sixt <johannes.sixt@telecom.at>
Mon, 8 Jan 2007 10:52:29 +0000 (8 11:52 +0100)
committerJohannes Sixt <johannes.sixt@telecom.at>
Fri, 19 Jan 2007 15:32:23 +0000 (19 16:32 +0100)
tree577d3d9785417513da7d758fd5a25b3f55b1a74f
parentaa0dba94438d061850e3a8a99f588e5b782afeda
Factor fork()/exec() work into a spawn() like function.

Windows does not have fork(), but something called spawn() that is roughly
equivalent to a fork()/exec() pair, factor out the Unix style code into
a function that does it more similarly to spawn(). Now the Windows style
spawn() can more easily be employed to achieve the same that the Unix style
code does.
Makefile
compat/mingw.c
connect.c
spawn-pipe.c [new file with mode: 0644]
spawn-pipe.h [new file with mode: 0644]