From: Sean Bright Date: Thu, 17 Jan 2019 15:56:35 +0000 (-0500) Subject: sched: Make sched_settime() return void because it cannot fail X-Git-Tag: 13.25.0-rc1~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28da2948d13c961ab5d9e9ce0d6110672045c40c;p=thirdparty%2Fasterisk.git sched: Make sched_settime() return void because it cannot fail Change-Id: I66b8b2b2778f186919d73ae9bf592104b8fb1cd5 --- diff --git a/main/sched.c b/main/sched.c index 0e7521e18d..e5a6e5210b 100644 --- a/main/sched.c +++ b/main/sched.c @@ -485,7 +485,7 @@ static void schedule(struct ast_sched_context *con, struct sched *s) * given the last event *tv and the offset in milliseconds 'when', * computes the next value, */ -static int sched_settime(struct timeval *t, int when) +static void sched_settime(struct timeval *t, int when) { struct timeval now = ast_tvnow(); @@ -507,7 +507,6 @@ static int sched_settime(struct timeval *t, int when) if (ast_tvcmp(*t, now) < 0) { *t = now; } - return 0; } int ast_sched_replace_variable(int old_id, struct ast_sched_context *con, int when, ast_sched_cb callback, const void *data, int variable) @@ -538,12 +537,10 @@ int ast_sched_add_variable(struct ast_sched_context *con, int when, ast_sched_cb tmp->variable = variable; tmp->when = ast_tv(0, 0); tmp->deleted = 0; - if (sched_settime(&tmp->when, when)) { - sched_release(con, tmp); - } else { - schedule(con, tmp); - res = tmp->sched_id->id; - } + + sched_settime(&tmp->when, when); + schedule(con, tmp); + res = tmp->sched_id->id; } #ifdef DUMP_SCHEDULER /* Dump contents of the context while we have the lock so nothing gets screwed up by accident. */ @@ -789,11 +786,8 @@ int ast_sched_runq(struct ast_sched_context *con) * If they return non-zero, we should schedule them to be * run again. */ - if (sched_settime(¤t->when, current->variable? res : current->resched)) { - sched_release(con, current); - } else { - schedule(con, current); - } + sched_settime(¤t->when, current->variable ? res : current->resched); + schedule(con, current); } else { /* No longer needed, so release it */ sched_release(con, current);