ada-lang.c: Rename gnat_encoded_fixed_type_info
[binutils-gdb.git] / gdbsupport / event-loop.cc
blob21c48ca035962d76c3a05ea45522932790d47065
1 /* Event loop machinery for GDB, the GNU debugger.
2 Copyright (C) 1999-2020 Free Software Foundation, Inc.
3 Written by Elena Zannoni <ezannoni@cygnus.com> of Cygnus Solutions.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "gdbsupport/common-defs.h"
21 #include "gdbsupport/event-loop.h"
23 #include <chrono>
25 #ifdef HAVE_POLL
26 #if defined (HAVE_POLL_H)
27 #include <poll.h>
28 #elif defined (HAVE_SYS_POLL_H)
29 #include <sys/poll.h>
30 #endif
31 #endif
33 #include <sys/types.h>
34 #include "gdbsupport/gdb_sys_time.h"
35 #include "gdbsupport/gdb_select.h"
37 /* See event-loop.h. */
39 debug_event_loop_kind debug_event_loop;
41 /* Tell create_file_handler what events we are interested in.
42 This is used by the select version of the event loop. */
44 #define GDB_READABLE (1<<1)
45 #define GDB_WRITABLE (1<<2)
46 #define GDB_EXCEPTION (1<<3)
48 /* Information about each file descriptor we register with the event
49 loop. */
51 struct file_handler
53 /* File descriptor. */
54 int fd;
56 /* Events we want to monitor: POLLIN, etc. */
57 int mask;
59 /* Events that have been seen since the last time. */
60 int ready_mask;
62 /* Procedure to call when fd is ready. */
63 handler_func *proc;
65 /* Argument to pass to proc. */
66 gdb_client_data client_data;
68 /* User-friendly name of this handler. Heap-allocated, owned by this.*/
69 std::string *name;
71 /* If set, this file descriptor is used for a user interface. */
72 bool is_ui;
74 /* Was an error detected on this fd? */
75 int error;
77 /* Next registered file descriptor. */
78 struct file_handler *next_file;
81 /* Do we use poll or select ? */
82 #ifdef HAVE_POLL
83 #define USE_POLL 1
84 #else
85 #define USE_POLL 0
86 #endif /* HAVE_POLL */
88 static unsigned char use_poll = USE_POLL;
90 #ifdef USE_WIN32API
91 #include <windows.h>
92 #include <io.h>
93 #endif
95 /* Gdb_notifier is just a list of file descriptors gdb is interested in.
96 These are the input file descriptor, and the target file
97 descriptor. We have two flavors of the notifier, one for platforms
98 that have the POLL function, the other for those that don't, and
99 only support SELECT. Each of the elements in the gdb_notifier list is
100 basically a description of what kind of events gdb is interested
101 in, for each fd. */
103 static struct
105 /* Ptr to head of file handler list. */
106 file_handler *first_file_handler;
108 /* Next file handler to handle, for the select variant. To level
109 the fairness across event sources, we serve file handlers in a
110 round-robin-like fashion. The number and order of the polled
111 file handlers may change between invocations, but this is good
112 enough. */
113 file_handler *next_file_handler;
115 #ifdef HAVE_POLL
116 /* Ptr to array of pollfd structures. */
117 struct pollfd *poll_fds;
119 /* Next file descriptor to handle, for the poll variant. To level
120 the fairness across event sources, we poll the file descriptors
121 in a round-robin-like fashion. The number and order of the
122 polled file descriptors may change between invocations, but
123 this is good enough. */
124 int next_poll_fds_index;
126 /* Timeout in milliseconds for calls to poll(). */
127 int poll_timeout;
128 #endif
130 /* Masks to be used in the next call to select.
131 Bits are set in response to calls to create_file_handler. */
132 fd_set check_masks[3];
134 /* What file descriptors were found ready by select. */
135 fd_set ready_masks[3];
137 /* Number of file descriptors to monitor (for poll). */
138 /* Number of valid bits (highest fd value + 1) (for select). */
139 int num_fds;
141 /* Time structure for calls to select(). */
142 struct timeval select_timeout;
144 /* Flag to tell whether the timeout should be used. */
145 int timeout_valid;
147 gdb_notifier;
149 /* Structure associated with a timer. PROC will be executed at the
150 first occasion after WHEN. */
151 struct gdb_timer
153 std::chrono::steady_clock::time_point when;
154 int timer_id;
155 struct gdb_timer *next;
156 timer_handler_func *proc; /* Function to call to do the work. */
157 gdb_client_data client_data; /* Argument to async_handler_func. */
160 /* List of currently active timers. It is sorted in order of
161 increasing timers. */
162 static struct
164 /* Pointer to first in timer list. */
165 struct gdb_timer *first_timer;
167 /* Id of the last timer created. */
168 int num_timers;
170 timer_list;
172 static void create_file_handler (int fd, int mask, handler_func *proc,
173 gdb_client_data client_data,
174 std::string &&name, bool is_ui);
175 static int gdb_wait_for_event (int);
176 static int update_wait_timeout (void);
177 static int poll_timers (void);
179 /* Process one high level event. If nothing is ready at this time,
180 wait for something to happen (via gdb_wait_for_event), then process
181 it. Returns >0 if something was done otherwise returns <0 (this
182 can happen if there are no event sources to wait for). */
185 gdb_do_one_event (void)
187 static int event_source_head = 0;
188 const int number_of_sources = 3;
189 int current = 0;
191 /* First let's see if there are any asynchronous signal handlers
192 that are ready. These would be the result of invoking any of the
193 signal handlers. */
194 if (invoke_async_signal_handlers ())
195 return 1;
197 /* To level the fairness across event sources, we poll them in a
198 round-robin fashion. */
199 for (current = 0; current < number_of_sources; current++)
201 int res;
203 switch (event_source_head)
205 case 0:
206 /* Are any timers that are ready? */
207 res = poll_timers ();
208 break;
209 case 1:
210 /* Are there events already waiting to be collected on the
211 monitored file descriptors? */
212 res = gdb_wait_for_event (0);
213 break;
214 case 2:
215 /* Are there any asynchronous event handlers ready? */
216 res = check_async_event_handlers ();
217 break;
218 default:
219 internal_error (__FILE__, __LINE__,
220 "unexpected event_source_head %d",
221 event_source_head);
224 event_source_head++;
225 if (event_source_head == number_of_sources)
226 event_source_head = 0;
228 if (res > 0)
229 return 1;
232 /* Block waiting for a new event. If gdb_wait_for_event returns -1,
233 we should get out because this means that there are no event
234 sources left. This will make the event loop stop, and the
235 application exit. */
237 if (gdb_wait_for_event (1) < 0)
238 return -1;
240 /* If gdb_wait_for_event has returned 1, it means that one event has
241 been handled. We break out of the loop. */
242 return 1;
245 /* See event-loop.h */
247 void
248 add_file_handler (int fd, handler_func *proc, gdb_client_data client_data,
249 std::string &&name, bool is_ui)
251 #ifdef HAVE_POLL
252 struct pollfd fds;
253 #endif
255 if (use_poll)
257 #ifdef HAVE_POLL
258 /* Check to see if poll () is usable. If not, we'll switch to
259 use select. This can happen on systems like
260 m68k-motorola-sys, `poll' cannot be used to wait for `stdin'.
261 On m68k-motorola-sysv, tty's are not stream-based and not
262 `poll'able. */
263 fds.fd = fd;
264 fds.events = POLLIN;
265 if (poll (&fds, 1, 0) == 1 && (fds.revents & POLLNVAL))
266 use_poll = 0;
267 #else
268 internal_error (__FILE__, __LINE__,
269 _("use_poll without HAVE_POLL"));
270 #endif /* HAVE_POLL */
272 if (use_poll)
274 #ifdef HAVE_POLL
275 create_file_handler (fd, POLLIN, proc, client_data, std::move (name),
276 is_ui);
277 #else
278 internal_error (__FILE__, __LINE__,
279 _("use_poll without HAVE_POLL"));
280 #endif
282 else
283 create_file_handler (fd, GDB_READABLE | GDB_EXCEPTION,
284 proc, client_data, std::move (name), is_ui);
287 /* Helper for add_file_handler.
289 For the poll case, MASK is a combination (OR) of POLLIN,
290 POLLRDNORM, POLLRDBAND, POLLPRI, POLLOUT, POLLWRNORM, POLLWRBAND:
291 these are the events we are interested in. If any of them occurs,
292 proc should be called.
294 For the select case, MASK is a combination of READABLE, WRITABLE,
295 EXCEPTION. PROC is the procedure that will be called when an event
296 occurs for FD. CLIENT_DATA is the argument to pass to PROC. */
298 static void
299 create_file_handler (int fd, int mask, handler_func * proc,
300 gdb_client_data client_data, std::string &&name,
301 bool is_ui)
303 file_handler *file_ptr;
305 /* Do we already have a file handler for this file? (We may be
306 changing its associated procedure). */
307 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
308 file_ptr = file_ptr->next_file)
310 if (file_ptr->fd == fd)
311 break;
314 /* It is a new file descriptor. Add it to the list. Otherwise, just
315 change the data associated with it. */
316 if (file_ptr == NULL)
318 file_ptr = XNEW (file_handler);
319 file_ptr->fd = fd;
320 file_ptr->ready_mask = 0;
321 file_ptr->next_file = gdb_notifier.first_file_handler;
322 gdb_notifier.first_file_handler = file_ptr;
324 if (use_poll)
326 #ifdef HAVE_POLL
327 gdb_notifier.num_fds++;
328 if (gdb_notifier.poll_fds)
329 gdb_notifier.poll_fds =
330 (struct pollfd *) xrealloc (gdb_notifier.poll_fds,
331 (gdb_notifier.num_fds
332 * sizeof (struct pollfd)));
333 else
334 gdb_notifier.poll_fds =
335 XNEW (struct pollfd);
336 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->fd = fd;
337 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->events = mask;
338 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->revents = 0;
339 #else
340 internal_error (__FILE__, __LINE__,
341 _("use_poll without HAVE_POLL"));
342 #endif /* HAVE_POLL */
344 else
346 if (mask & GDB_READABLE)
347 FD_SET (fd, &gdb_notifier.check_masks[0]);
348 else
349 FD_CLR (fd, &gdb_notifier.check_masks[0]);
351 if (mask & GDB_WRITABLE)
352 FD_SET (fd, &gdb_notifier.check_masks[1]);
353 else
354 FD_CLR (fd, &gdb_notifier.check_masks[1]);
356 if (mask & GDB_EXCEPTION)
357 FD_SET (fd, &gdb_notifier.check_masks[2]);
358 else
359 FD_CLR (fd, &gdb_notifier.check_masks[2]);
361 if (gdb_notifier.num_fds <= fd)
362 gdb_notifier.num_fds = fd + 1;
366 file_ptr->proc = proc;
367 file_ptr->client_data = client_data;
368 file_ptr->mask = mask;
369 file_ptr->name = new std::string (std::move (name));
370 file_ptr->is_ui = is_ui;
373 /* Return the next file handler to handle, and advance to the next
374 file handler, wrapping around if the end of the list is
375 reached. */
377 static file_handler *
378 get_next_file_handler_to_handle_and_advance (void)
380 file_handler *curr_next;
382 /* The first time around, this is still NULL. */
383 if (gdb_notifier.next_file_handler == NULL)
384 gdb_notifier.next_file_handler = gdb_notifier.first_file_handler;
386 curr_next = gdb_notifier.next_file_handler;
387 gdb_assert (curr_next != NULL);
389 /* Advance. */
390 gdb_notifier.next_file_handler = curr_next->next_file;
391 /* Wrap around, if necessary. */
392 if (gdb_notifier.next_file_handler == NULL)
393 gdb_notifier.next_file_handler = gdb_notifier.first_file_handler;
395 return curr_next;
398 /* Remove the file descriptor FD from the list of monitored fd's:
399 i.e. we don't care anymore about events on the FD. */
400 void
401 delete_file_handler (int fd)
403 file_handler *file_ptr, *prev_ptr = NULL;
404 int i;
405 #ifdef HAVE_POLL
406 int j;
407 struct pollfd *new_poll_fds;
408 #endif
410 /* Find the entry for the given file. */
412 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
413 file_ptr = file_ptr->next_file)
415 if (file_ptr->fd == fd)
416 break;
419 if (file_ptr == NULL)
420 return;
422 if (use_poll)
424 #ifdef HAVE_POLL
425 /* Create a new poll_fds array by copying every fd's information
426 but the one we want to get rid of. */
428 new_poll_fds = (struct pollfd *)
429 xmalloc ((gdb_notifier.num_fds - 1) * sizeof (struct pollfd));
431 for (i = 0, j = 0; i < gdb_notifier.num_fds; i++)
433 if ((gdb_notifier.poll_fds + i)->fd != fd)
435 (new_poll_fds + j)->fd = (gdb_notifier.poll_fds + i)->fd;
436 (new_poll_fds + j)->events = (gdb_notifier.poll_fds + i)->events;
437 (new_poll_fds + j)->revents
438 = (gdb_notifier.poll_fds + i)->revents;
439 j++;
442 xfree (gdb_notifier.poll_fds);
443 gdb_notifier.poll_fds = new_poll_fds;
444 gdb_notifier.num_fds--;
445 #else
446 internal_error (__FILE__, __LINE__,
447 _("use_poll without HAVE_POLL"));
448 #endif /* HAVE_POLL */
450 else
452 if (file_ptr->mask & GDB_READABLE)
453 FD_CLR (fd, &gdb_notifier.check_masks[0]);
454 if (file_ptr->mask & GDB_WRITABLE)
455 FD_CLR (fd, &gdb_notifier.check_masks[1]);
456 if (file_ptr->mask & GDB_EXCEPTION)
457 FD_CLR (fd, &gdb_notifier.check_masks[2]);
459 /* Find current max fd. */
461 if ((fd + 1) == gdb_notifier.num_fds)
463 gdb_notifier.num_fds--;
464 for (i = gdb_notifier.num_fds; i; i--)
466 if (FD_ISSET (i - 1, &gdb_notifier.check_masks[0])
467 || FD_ISSET (i - 1, &gdb_notifier.check_masks[1])
468 || FD_ISSET (i - 1, &gdb_notifier.check_masks[2]))
469 break;
471 gdb_notifier.num_fds = i;
475 /* Deactivate the file descriptor, by clearing its mask,
476 so that it will not fire again. */
478 file_ptr->mask = 0;
480 /* If this file handler was going to be the next one to be handled,
481 advance to the next's next, if any. */
482 if (gdb_notifier.next_file_handler == file_ptr)
484 if (file_ptr->next_file == NULL
485 && file_ptr == gdb_notifier.first_file_handler)
486 gdb_notifier.next_file_handler = NULL;
487 else
488 get_next_file_handler_to_handle_and_advance ();
491 /* Get rid of the file handler in the file handler list. */
492 if (file_ptr == gdb_notifier.first_file_handler)
493 gdb_notifier.first_file_handler = file_ptr->next_file;
494 else
496 for (prev_ptr = gdb_notifier.first_file_handler;
497 prev_ptr->next_file != file_ptr;
498 prev_ptr = prev_ptr->next_file)
500 prev_ptr->next_file = file_ptr->next_file;
503 delete file_ptr->name;
504 xfree (file_ptr);
507 /* Handle the given event by calling the procedure associated to the
508 corresponding file handler. */
510 static void
511 handle_file_event (file_handler *file_ptr, int ready_mask)
513 int mask;
514 #ifdef HAVE_POLL
515 int error_mask;
516 #endif
520 /* With poll, the ready_mask could have any of three events
521 set to 1: POLLHUP, POLLERR, POLLNVAL. These events
522 cannot be used in the requested event mask (events), but
523 they can be returned in the return mask (revents). We
524 need to check for those event too, and add them to the
525 mask which will be passed to the handler. */
527 /* See if the desired events (mask) match the received
528 events (ready_mask). */
530 if (use_poll)
532 #ifdef HAVE_POLL
533 /* POLLHUP means EOF, but can be combined with POLLIN to
534 signal more data to read. */
535 error_mask = POLLHUP | POLLERR | POLLNVAL;
536 mask = ready_mask & (file_ptr->mask | error_mask);
538 if ((mask & (POLLERR | POLLNVAL)) != 0)
540 /* Work in progress. We may need to tell somebody
541 what kind of error we had. */
542 if (mask & POLLERR)
543 warning (_("Error detected on fd %d"), file_ptr->fd);
544 if (mask & POLLNVAL)
545 warning (_("Invalid or non-`poll'able fd %d"),
546 file_ptr->fd);
547 file_ptr->error = 1;
549 else
550 file_ptr->error = 0;
551 #else
552 internal_error (__FILE__, __LINE__,
553 _("use_poll without HAVE_POLL"));
554 #endif /* HAVE_POLL */
556 else
558 if (ready_mask & GDB_EXCEPTION)
560 warning (_("Exception condition detected on fd %d"),
561 file_ptr->fd);
562 file_ptr->error = 1;
564 else
565 file_ptr->error = 0;
566 mask = ready_mask & file_ptr->mask;
569 /* If there was a match, then call the handler. */
570 if (mask != 0)
572 event_loop_ui_debug_printf (file_ptr->is_ui,
573 "invoking fd file handler `%s`",
574 file_ptr->name->c_str ());
575 file_ptr->proc (file_ptr->error, file_ptr->client_data);
581 /* Wait for new events on the monitored file descriptors. Run the
582 event handler if the first descriptor that is detected by the poll.
583 If BLOCK and if there are no events, this function will block in
584 the call to poll. Return 1 if an event was handled. Return -1 if
585 there are no file descriptors to monitor. Return 1 if an event was
586 handled, otherwise returns 0. */
588 static int
589 gdb_wait_for_event (int block)
591 file_handler *file_ptr;
592 int num_found = 0;
594 /* Make sure all output is done before getting another event. */
595 flush_streams ();
597 if (gdb_notifier.num_fds == 0)
598 return -1;
600 if (block)
601 update_wait_timeout ();
603 if (use_poll)
605 #ifdef HAVE_POLL
606 int timeout;
608 if (block)
609 timeout = gdb_notifier.timeout_valid ? gdb_notifier.poll_timeout : -1;
610 else
611 timeout = 0;
613 num_found = poll (gdb_notifier.poll_fds,
614 (unsigned long) gdb_notifier.num_fds, timeout);
616 /* Don't print anything if we get out of poll because of a
617 signal. */
618 if (num_found == -1 && errno != EINTR)
619 perror_with_name (("poll"));
620 #else
621 internal_error (__FILE__, __LINE__,
622 _("use_poll without HAVE_POLL"));
623 #endif /* HAVE_POLL */
625 else
627 struct timeval select_timeout;
628 struct timeval *timeout_p;
630 if (block)
631 timeout_p = gdb_notifier.timeout_valid
632 ? &gdb_notifier.select_timeout : NULL;
633 else
635 memset (&select_timeout, 0, sizeof (select_timeout));
636 timeout_p = &select_timeout;
639 gdb_notifier.ready_masks[0] = gdb_notifier.check_masks[0];
640 gdb_notifier.ready_masks[1] = gdb_notifier.check_masks[1];
641 gdb_notifier.ready_masks[2] = gdb_notifier.check_masks[2];
642 num_found = gdb_select (gdb_notifier.num_fds,
643 &gdb_notifier.ready_masks[0],
644 &gdb_notifier.ready_masks[1],
645 &gdb_notifier.ready_masks[2],
646 timeout_p);
648 /* Clear the masks after an error from select. */
649 if (num_found == -1)
651 FD_ZERO (&gdb_notifier.ready_masks[0]);
652 FD_ZERO (&gdb_notifier.ready_masks[1]);
653 FD_ZERO (&gdb_notifier.ready_masks[2]);
655 /* Dont print anything if we got a signal, let gdb handle
656 it. */
657 if (errno != EINTR)
658 perror_with_name (("select"));
662 /* Avoid looking at poll_fds[i]->revents if no event fired. */
663 if (num_found <= 0)
664 return 0;
666 /* Run event handlers. We always run just one handler and go back
667 to polling, in case a handler changes the notifier list. Since
668 events for sources we haven't consumed yet wake poll/select
669 immediately, no event is lost. */
671 /* To level the fairness across event descriptors, we handle them in
672 a round-robin-like fashion. The number and order of descriptors
673 may change between invocations, but this is good enough. */
674 if (use_poll)
676 #ifdef HAVE_POLL
677 int i;
678 int mask;
680 while (1)
682 if (gdb_notifier.next_poll_fds_index >= gdb_notifier.num_fds)
683 gdb_notifier.next_poll_fds_index = 0;
684 i = gdb_notifier.next_poll_fds_index++;
686 gdb_assert (i < gdb_notifier.num_fds);
687 if ((gdb_notifier.poll_fds + i)->revents)
688 break;
691 for (file_ptr = gdb_notifier.first_file_handler;
692 file_ptr != NULL;
693 file_ptr = file_ptr->next_file)
695 if (file_ptr->fd == (gdb_notifier.poll_fds + i)->fd)
696 break;
698 gdb_assert (file_ptr != NULL);
700 mask = (gdb_notifier.poll_fds + i)->revents;
701 handle_file_event (file_ptr, mask);
702 return 1;
703 #else
704 internal_error (__FILE__, __LINE__,
705 _("use_poll without HAVE_POLL"));
706 #endif /* HAVE_POLL */
708 else
710 /* See comment about even source fairness above. */
711 int mask = 0;
715 file_ptr = get_next_file_handler_to_handle_and_advance ();
717 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[0]))
718 mask |= GDB_READABLE;
719 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[1]))
720 mask |= GDB_WRITABLE;
721 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[2]))
722 mask |= GDB_EXCEPTION;
724 while (mask == 0);
726 handle_file_event (file_ptr, mask);
727 return 1;
729 return 0;
732 /* Create a timer that will expire in MS milliseconds from now. When
733 the timer is ready, PROC will be executed. At creation, the timer
734 is added to the timers queue. This queue is kept sorted in order
735 of increasing timers. Return a handle to the timer struct. */
738 create_timer (int ms, timer_handler_func *proc,
739 gdb_client_data client_data)
741 using namespace std::chrono;
742 struct gdb_timer *timer_ptr, *timer_index, *prev_timer;
744 steady_clock::time_point time_now = steady_clock::now ();
746 timer_ptr = new gdb_timer ();
747 timer_ptr->when = time_now + milliseconds (ms);
748 timer_ptr->proc = proc;
749 timer_ptr->client_data = client_data;
750 timer_list.num_timers++;
751 timer_ptr->timer_id = timer_list.num_timers;
753 /* Now add the timer to the timer queue, making sure it is sorted in
754 increasing order of expiration. */
756 for (timer_index = timer_list.first_timer;
757 timer_index != NULL;
758 timer_index = timer_index->next)
760 if (timer_index->when > timer_ptr->when)
761 break;
764 if (timer_index == timer_list.first_timer)
766 timer_ptr->next = timer_list.first_timer;
767 timer_list.first_timer = timer_ptr;
770 else
772 for (prev_timer = timer_list.first_timer;
773 prev_timer->next != timer_index;
774 prev_timer = prev_timer->next)
777 prev_timer->next = timer_ptr;
778 timer_ptr->next = timer_index;
781 gdb_notifier.timeout_valid = 0;
782 return timer_ptr->timer_id;
785 /* There is a chance that the creator of the timer wants to get rid of
786 it before it expires. */
787 void
788 delete_timer (int id)
790 struct gdb_timer *timer_ptr, *prev_timer = NULL;
792 /* Find the entry for the given timer. */
794 for (timer_ptr = timer_list.first_timer; timer_ptr != NULL;
795 timer_ptr = timer_ptr->next)
797 if (timer_ptr->timer_id == id)
798 break;
801 if (timer_ptr == NULL)
802 return;
803 /* Get rid of the timer in the timer list. */
804 if (timer_ptr == timer_list.first_timer)
805 timer_list.first_timer = timer_ptr->next;
806 else
808 for (prev_timer = timer_list.first_timer;
809 prev_timer->next != timer_ptr;
810 prev_timer = prev_timer->next)
812 prev_timer->next = timer_ptr->next;
814 delete timer_ptr;
816 gdb_notifier.timeout_valid = 0;
819 /* Convert a std::chrono duration to a struct timeval. */
821 template<typename Duration>
822 static struct timeval
823 duration_cast_timeval (const Duration &d)
825 using namespace std::chrono;
826 seconds sec = duration_cast<seconds> (d);
827 microseconds msec = duration_cast<microseconds> (d - sec);
829 struct timeval tv;
830 tv.tv_sec = sec.count ();
831 tv.tv_usec = msec.count ();
832 return tv;
835 /* Update the timeout for the select() or poll(). Returns true if the
836 timer has already expired, false otherwise. */
838 static int
839 update_wait_timeout (void)
841 if (timer_list.first_timer != NULL)
843 using namespace std::chrono;
844 steady_clock::time_point time_now = steady_clock::now ();
845 struct timeval timeout;
847 if (timer_list.first_timer->when < time_now)
849 /* It expired already. */
850 timeout.tv_sec = 0;
851 timeout.tv_usec = 0;
853 else
855 steady_clock::duration d = timer_list.first_timer->when - time_now;
856 timeout = duration_cast_timeval (d);
859 /* Update the timeout for select/ poll. */
860 if (use_poll)
862 #ifdef HAVE_POLL
863 gdb_notifier.poll_timeout = timeout.tv_sec * 1000;
864 #else
865 internal_error (__FILE__, __LINE__,
866 _("use_poll without HAVE_POLL"));
867 #endif /* HAVE_POLL */
869 else
871 gdb_notifier.select_timeout.tv_sec = timeout.tv_sec;
872 gdb_notifier.select_timeout.tv_usec = timeout.tv_usec;
874 gdb_notifier.timeout_valid = 1;
876 if (timer_list.first_timer->when < time_now)
877 return 1;
879 else
880 gdb_notifier.timeout_valid = 0;
882 return 0;
885 /* Check whether a timer in the timers queue is ready. If a timer is
886 ready, call its handler and return. Update the timeout for the
887 select() or poll() as well. Return 1 if an event was handled,
888 otherwise returns 0.*/
890 static int
891 poll_timers (void)
893 if (update_wait_timeout ())
895 struct gdb_timer *timer_ptr = timer_list.first_timer;
896 timer_handler_func *proc = timer_ptr->proc;
897 gdb_client_data client_data = timer_ptr->client_data;
899 /* Get rid of the timer from the beginning of the list. */
900 timer_list.first_timer = timer_ptr->next;
902 /* Delete the timer before calling the callback, not after, in
903 case the callback itself decides to try deleting the timer
904 too. */
905 delete timer_ptr;
907 /* Call the procedure associated with that timer. */
908 (proc) (client_data);
910 return 1;
913 return 0;