aboutsummaryrefslogtreecommitdiff
path: root/toys/other/setsid.c
blob: 1b98315cb53e429b1598ce7d224809a80e79133d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* vi: set sw=4 ts=4:
 *
 * setsid.c - Run program in a new session ID.
 *
 * Copyright 2006 Rob Landley <rob@landley.net>
 *
 * Not in SUSv4.

USE_SETSID(NEWTOY(setsid, "^<1t", TOYFLAG_USR|TOYFLAG_BIN))

config SETSID
	bool "setsid"
	default y
	help
	  usage: setsid [-t] command [args...]

	  Run process in a new session.

	  -t	Grab tty (become foreground process, receiving keyboard signals)
*/

#include "toys.h"

void setsid_main(void)
{
	while (setsid()<0)
		if (vfork()) _exit(0);
	if (toys.optflags) {
		setpgid(0,0);
		tcsetpgrp(0, getpid());
	}
	xexec(toys.optargs);
}