diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index 042dbf4b17545ce53e5cc6024cce663caa7b8681..d8995c696d94366c7fac609538eb89d74857db78 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -8264,13 +8264,16 @@ static void *sched_thread(void *ignore)
 {
 	int count;
 	int res;
+	struct timeval tv;
 	struct timespec ts;
 
 	for (;;) {
 		res = ast_sched_wait(sched);
 		if ((res > 1000) || (res < 0))
 			res = 1000;
-		ts.tv_sec = res;
+		tv = ast_tvadd(ast_tvnow(), ast_samp2tv(res, 1000));
+		ts.tv_sec = tv.tv_sec;
+		ts.tv_nsec = tv.tv_usec * 1000;
 
 		ast_mutex_lock(&sched_lock);
 		ast_cond_timedwait(&sched_cond, &sched_lock, &ts);