aboutsummaryrefslogtreecommitdiff
path: root/src/pies.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2015-11-05 10:26:17 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2015-11-05 10:26:17 +0200
commite7e3df9a6c4599f982a62bb8d7cd973ccd8cee72 (patch)
treee897c5d7e85bdaa5503aab6a25c174cf06d1c5d2 /src/pies.c
parent6cc676f7f8d86849607b7f707c8682e7efdb65c3 (diff)
downloadpies-e7e3df9a6c4599f982a62bb8d7cd973ccd8cee72.tar.gz
pies-e7e3df9a6c4599f982a62bb8d7cd973ccd8cee72.tar.bz2
New ctl commands: start, stop, restart, reboot, shutdown.
* src/ctl.c (CTL_ACTION_STATE): New state. (cmdtab): Add new commands: start, stop, restart, reboot, shutdown. (ctlio)<action>: New member. (ctlio_create): Initialize action. (list_prog): List scheduled wakeup time for sleeping components. (cmd_start,cmd_stop) (cmd_restart,cmd_reboot,cmd_shutdown): New functions. (ctlwr): Handle CTL_ACTION_STATE. * src/pies.c (pies_schedule_action): New function. (stop_components): Use progman_stop_tag(). * src/pies.h (pies_schedule_action, progman_stop_tag): New protos. (progman_stop_component): Remove. * src/prog.h (progman_locate, progman_stop_component): New protos. * src/progman.c (progman_locate): New function. (progman_cleanup): Set status depending on the CF_DISABLED bit. (progman_stop_component): Take struct prog* as argument. (progman_stop_tag): New function.
Diffstat (limited to 'src/pies.c')
-rw-r--r--src/pies.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/pies.c b/src/pies.c
index 60663a5..9aa1a37 100644
--- a/src/pies.c
+++ b/src/pies.c
@@ -1797,6 +1797,13 @@ int action = ACTION_CONT;
int children_cleanup = 0;
int got_alarm = 0;
+void
+pies_schedule_action (int act)
+{
+ action = act;
+ /*FIXME: got_alarm?*/
+}
+
RETSIGTYPE
sig_handler (int sig)
{
@@ -1995,7 +2002,7 @@ stop_components ()
continue;
if (buf[len - 1] == '\n')
buf[len - 1] = 0;
- progman_stop_component (buf);
+ progman_stop_tag (buf);
}
free (buf);

Return to:

Send suggestions and report system problems to the System administrator.