mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
2000-03-06 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
From Eli Zaretskii <eliz@is.elta.co.il>: * event-loop.c (poll_timers): Don't compare delta.tv_sec with zero, since time_t might be unsigned.
This commit is contained in:
@@ -1114,8 +1114,11 @@ poll_timers (void)
|
||||
}
|
||||
|
||||
/* Oops it expired already. Tell select / poll to return
|
||||
immediately. */
|
||||
if (delta.tv_sec < 0)
|
||||
immediately. (Cannot simply test if delta.tv_sec is negative
|
||||
because time_t might be unsigned.) */
|
||||
if (timer_list.first_timer->when.tv_sec < time_now.tv_sec
|
||||
|| (timer_list.first_timer->when.tv_sec == time_now.tv_sec
|
||||
&& timer_list.first_timer->when.tv_usec < time_now.tv_usec))
|
||||
{
|
||||
delta.tv_sec = 0;
|
||||
delta.tv_usec = 0;
|
||||
|
||||
Reference in New Issue
Block a user