3
0

setsid.c 830 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * setsid.c -- execute a command in a new session
  4. * Rick Sladkey <jrs@world.std.com>
  5. * In the public domain.
  6. *
  7. * 1999-02-22 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL>
  8. * - added Native Language Support
  9. *
  10. * 2001-01-18 John Fremlin <vii@penguinpowered.com>
  11. * - fork in case we are process group leader
  12. *
  13. * 2004-11-12 Paul Fox
  14. * - busyboxed
  15. */
  16. #include "busybox.h"
  17. #include <stdio.h>
  18. #include <unistd.h>
  19. #include <stdlib.h>
  20. int setsid_main(int argc, char *argv[])
  21. {
  22. if (argc < 2)
  23. bb_show_usage();
  24. if (getpgrp() == getpid()) {
  25. switch (fork()){
  26. case -1:
  27. bb_perror_msg_and_die("fork");
  28. case 0:
  29. break;
  30. default: /* parent */
  31. exit(0);
  32. }
  33. /* child falls through */
  34. }
  35. setsid(); /* no error possible */
  36. execvp(argv[1], argv + 1);
  37. bb_perror_msg_and_die("%s", argv[1]);
  38. }