summaryrefslogtreecommitdiffstats
path: root/inittab.c
diff options
context:
space:
mode:
Diffstat (limited to 'inittab.c')
-rw-r--r--inittab.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/inittab.c b/inittab.c
index 2ed1395..686d389 100644
--- a/inittab.c
+++ b/inittab.c
@@ -175,6 +175,15 @@ err_out:
regfree(&pat_cmdline);
}
+static void rcrespawn(struct init_action *a)
+{
+ a->tout.cb = respawn;
+ a->respawn = 500;
+
+ a->proc.cb = child_exit;
+ fork_worker(a);
+}
+
static struct init_handler handlers[] = {
{
.name = "sysinit",
@@ -190,6 +199,10 @@ static struct init_handler handlers[] = {
.name = "askconsole",
.cb = askconsole,
.multi = 1,
+ }, {
+ .name = "respawn",
+ .cb = rcrespawn,
+ .multi = 1,
}
};