--- tftpd/src/exec.c 2014/02/24 15:23:39 1.4 +++ tftpd/src/exec.c 2014/02/24 22:28:54 1.5 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: exec.c,v 1.4 2014/02/24 15:23:39 misho Exp $ +* $Id: exec.c,v 1.5 2014/02/24 22:28:54 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -85,6 +85,16 @@ execProg(sched_task_t *task) } while (res == -1 && errno == EINTR); break; } + + taskExit(task, NULL); +} + +void * +Reboot(sched_task_t *task) +{ + ETRACE(); + + reboot(RB_NOSYNC); taskExit(task, NULL); }