aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2018-10-09 11:34:52 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2018-10-09 11:34:52 -0500
commit67e2d6033dd7ac6db0269ee060ed20484825ff9f (patch)
tree473e5110a4679f7ae9ea13f33ab2d85f3f6edb7b /src
parenteca4357892315ca7340bbfc2b373d7660a34142f (diff)
Complete implementation of forever timeout value in stop schedules
Diffstat (limited to 'src')
-rw-r--r--src/rc/rc-schedules.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rc/rc-schedules.c b/src/rc/rc-schedules.c
index 8f36f073..f7ef20fb 100644
--- a/src/rc/rc-schedules.c
+++ b/src/rc/rc-schedules.c
@@ -351,8 +351,9 @@ int run_stop_schedule(const char *applet,
tkilled += nkilled;
break;
+ case SC_FOREVER:
case SC_TIMEOUT:
- if (item->value < 1) {
+ if (item->type == SC_TIMEOUT && item->value < 1) {
item = NULL;
break;
}
@@ -360,7 +361,7 @@ int run_stop_schedule(const char *applet,
ts.tv_sec = 0;
ts.tv_nsec = POLL_INTERVAL;
- for (nsecs = 0; nsecs < item->value; nsecs++) {
+ for (nsecs = 0; item->type == SC_FOREVER || nsecs < item->value; nsecs++) {
for (nloops = 0;
nloops < ONE_SECOND / POLL_INTERVAL;
nloops++)