diff options
Diffstat (limited to 'lib/thread.c')
-rw-r--r-- | lib/thread.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/thread.c b/lib/thread.c index cb513323..5e40261e 100644 --- a/lib/thread.c +++ b/lib/thread.c @@ -662,6 +662,14 @@ thread_timer_remain_second (struct thread *thread) return 0; } +struct timeval +thread_timer_remain(struct thread *thread) +{ + quagga_get_relative(NULL); + + return timeval_subtract(thread->u.sands, relative_time); +} + #define debugargdef const char *funcname, const char *schedfrom, int fromln #define debugargpass funcname, schedfrom, fromln |