sched.c: Add warning about negative time interval request.

Change-Id: Ib91435fb45b7f5f7c0fc83d0eec20b88098707bc
This commit is contained in:
Richard Mudgett 2015-09-28 15:31:38 -05:00
parent 12feec0bf7
commit 9bc7386b7c
1 changed files with 11 additions and 0 deletions

View File

@ -450,6 +450,17 @@ static int sched_settime(struct timeval *t, int when)
{
struct timeval now = ast_tvnow();
if (when < 0) {
/*
* A negative when value is likely a bug as it
* represents a VERY large timeout time.
*/
ast_log(LOG_WARNING,
"Bug likely: Negative time interval %d (interpreted as %u ms) requested!\n",
when, (unsigned int) when);
ast_assert(0);
}
/*ast_debug(1, "TV -> %lu,%lu\n", tv->tv_sec, tv->tv_usec);*/
if (ast_tvzero(*t)) /* not supplied, default to now */
*t = now;