The setsid wrapper is in place. Linux installations include
one by default; I've added a mini one for FreeBSD:
main(int argc, char **argv) {
setsid();
execvp(argv[1], argv + 1);
}
Let me know if there are any problems.
- Sascha
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
