suppress warnings about easch <applet>_main() having
[platform/upstream/busybox.git] / miscutils / setsid.c
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
17 #include "busybox.h"
18
19 int setsid_main(int argc, char *argv[]);
20 int setsid_main(int argc, char *argv[])
21 {
22         if (argc < 2)
23                 bb_show_usage();
24
25         if (getpgrp() == getpid()) {
26                 switch (fork()) {
27                 case -1:
28                         bb_perror_msg_and_die("fork");
29                 case 0:
30                         break;
31                 default:        /* parent */
32                         exit(0);
33                 }
34         }
35         /* child */
36
37         setsid();  /* no error possible */
38
39         execvp(argv[1], argv + 1);
40
41         bb_perror_msg_and_die("%s", argv[1]);
42 }