1 /* Event loop machinery for GDB, the GNU debugger.
2 Copyright (C) 1999-2013 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/>. */
21 #include "event-loop.h"
22 #include "event-top.h"
26 #if defined (HAVE_POLL_H)
28 #elif defined (HAVE_SYS_POLL_H)
33 #include <sys/types.h>
34 #include "gdb_string.h"
37 #include "exceptions.h"
38 #include "gdb_assert.h"
39 #include "gdb_select.h"
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 /* Data point to pass to the event handler. */
49 typedef union event_data
55 typedef struct gdb_event gdb_event
;
56 typedef void (event_handler_func
) (event_data
);
58 /* Event for the GDB event system. Events are queued by calling
59 async_queue_event and serviced later on by gdb_do_one_event. An
60 event can be, for instance, a file descriptor becoming ready to be
61 read. Servicing an event simply means that the procedure PROC will
62 be called. We have 2 queues, one for file handlers that we listen
63 to in the event loop, and one for the file handlers+events that are
64 ready. The procedure PROC associated with each event is dependant
65 of the event source. In the case of monitored file descriptors, it
66 is always the same (handle_file_event). Its duty is to invoke the
67 handler associated with the file descriptor whose state change
68 generated the event, plus doing other cleanups and such. In the
69 case of async signal handlers, it is
70 invoke_async_signal_handler. */
72 typedef struct gdb_event
74 /* Procedure to call to service this event. */
75 event_handler_func
*proc
;
77 /* Data to pass to the event handler. */
81 /* Information about each file descriptor we register with the event
84 typedef struct file_handler
86 int fd
; /* File descriptor. */
87 int mask
; /* Events we want to monitor: POLLIN, etc. */
88 int ready_mask
; /* Events that have been seen since
90 handler_func
*proc
; /* Procedure to call when fd is ready. */
91 gdb_client_data client_data
; /* Argument to pass to proc. */
92 int error
; /* Was an error detected on this fd? */
93 struct file_handler
*next_file
; /* Next registered file descriptor. */
97 /* PROC is a function to be invoked when the READY flag is set. This
98 happens when there has been a signal and the corresponding signal
99 handler has 'triggered' this async_signal_handler for execution.
100 The actual work to be done in response to a signal will be carried
101 out by PROC at a later time, within process_event. This provides a
102 deferred execution of signal handlers.
104 Async_init_signals takes care of setting up such an
105 async_signal_handler for each interesting signal. */
107 typedef struct async_signal_handler
109 int ready
; /* If ready, call this handler
110 from the main event loop, using
111 invoke_async_handler. */
112 struct async_signal_handler
*next_handler
; /* Ptr to next handler. */
113 sig_handler_func
*proc
; /* Function to call to do the work. */
114 gdb_client_data client_data
; /* Argument to async_handler_func. */
116 async_signal_handler
;
118 /* PROC is a function to be invoked when the READY flag is set. This
119 happens when the event has been marked with
120 MARK_ASYNC_EVENT_HANDLER. The actual work to be done in response
121 to an event will be carried out by PROC at a later time, within
122 process_event. This provides a deferred execution of event
124 typedef struct async_event_handler
126 /* If ready, call this handler from the main event loop, using
127 invoke_event_handler. */
130 /* Point to next handler. */
131 struct async_event_handler
*next_handler
;
133 /* Function to call to do the work. */
134 async_event_handler_func
*proc
;
136 /* Argument to PROC. */
137 gdb_client_data client_data
;
141 DECLARE_QUEUE_P(gdb_event_p
);
142 DEFINE_QUEUE_P(gdb_event_p
);
143 static QUEUE(gdb_event_p
) *event_queue
= NULL
;
145 /* Gdb_notifier is just a list of file descriptors gdb is interested in.
146 These are the input file descriptor, and the target file
147 descriptor. We have two flavors of the notifier, one for platforms
148 that have the POLL function, the other for those that don't, and
149 only support SELECT. Each of the elements in the gdb_notifier list is
150 basically a description of what kind of events gdb is interested
153 /* As of 1999-04-30 only the input file descriptor is registered with the
156 /* Do we use poll or select ? */
161 #endif /* HAVE_POLL */
163 static unsigned char use_poll
= USE_POLL
;
172 /* Ptr to head of file handler list. */
173 file_handler
*first_file_handler
;
176 /* Ptr to array of pollfd structures. */
177 struct pollfd
*poll_fds
;
179 /* Timeout in milliseconds for calls to poll(). */
183 /* Masks to be used in the next call to select.
184 Bits are set in response to calls to create_file_handler. */
185 fd_set check_masks
[3];
187 /* What file descriptors were found ready by select. */
188 fd_set ready_masks
[3];
190 /* Number of file descriptors to monitor (for poll). */
191 /* Number of valid bits (highest fd value + 1) (for select). */
194 /* Time structure for calls to select(). */
195 struct timeval select_timeout
;
197 /* Flag to tell whether the timeout should be used. */
202 /* Structure associated with a timer. PROC will be executed at the
203 first occasion after WHEN. */
208 struct gdb_timer
*next
;
209 timer_handler_func
*proc
; /* Function to call to do the work. */
210 gdb_client_data client_data
; /* Argument to async_handler_func. */
213 /* List of currently active timers. It is sorted in order of
214 increasing timers. */
217 /* Pointer to first in timer list. */
218 struct gdb_timer
*first_timer
;
220 /* Id of the last timer created. */
225 /* All the async_signal_handlers gdb is interested in are kept onto
229 /* Pointer to first in handler list. */
230 async_signal_handler
*first_handler
;
232 /* Pointer to last in handler list. */
233 async_signal_handler
*last_handler
;
237 /* All the async_event_handlers gdb is interested in are kept onto
241 /* Pointer to first in handler list. */
242 async_event_handler
*first_handler
;
244 /* Pointer to last in handler list. */
245 async_event_handler
*last_handler
;
247 async_event_handler_list
;
249 static int invoke_async_signal_handlers (void);
250 static void create_file_handler (int fd
, int mask
, handler_func
*proc
,
251 gdb_client_data client_data
);
252 static void handle_file_event (event_data data
);
253 static void check_async_event_handlers (void);
254 static int gdb_wait_for_event (int);
255 static void poll_timers (void);
258 /* Create a generic event, to be enqueued in the event queue for
259 processing. PROC is the procedure associated to the event. DATA
260 is passed to PROC upon PROC invocation. */
263 create_event (event_handler_func proc
, event_data data
)
267 event
= xmalloc (sizeof (*event
));
274 /* Create a file event, to be enqueued in the event queue for
275 processing. The procedure associated to this event is always
276 handle_file_event, which will in turn invoke the one that was
277 associated to FD when it was registered with the event loop. */
279 create_file_event (int fd
)
284 return create_event (handle_file_event
, data
);
291 gdb_event_xfree (struct gdb_event
*event
)
296 /* Initialize the event queue. */
299 initialize_event_loop (void)
301 event_queue
= QUEUE_alloc (gdb_event_p
, gdb_event_xfree
);
304 /* Process one event.
305 The event can be the next one to be serviced in the event queue,
306 or an asynchronous event handler can be invoked in response to
307 the reception of a signal.
308 If an event was processed (either way), 1 is returned otherwise
310 Scan the queue from head to tail, processing therefore the high
311 priority events first, by invoking the associated event handler
316 /* First let's see if there are any asynchronous event handlers that
317 are ready. These would be the result of invoking any of the
320 if (invoke_async_signal_handlers ())
323 /* Look in the event queue to find an event that is ready
326 if (!QUEUE_is_empty (gdb_event_p
, event_queue
))
328 /* Let's get rid of the event from the event queue. We need to
329 do this now because while processing the event, the proc
330 function could end up calling 'error' and therefore jump out
331 to the caller of this function, gdb_do_one_event. In that
332 case, we would have on the event queue an event wich has been
333 processed, but not deleted. */
334 gdb_event
*event_ptr
= QUEUE_deque (gdb_event_p
, event_queue
);
335 /* Call the handler for the event. */
336 event_handler_func
*proc
= event_ptr
->proc
;
337 event_data data
= event_ptr
->data
;
339 gdb_event_xfree (event_ptr
);
341 /* Now call the procedure associated with the event. */
346 /* This is the case if there are no event on the event queue. */
350 /* Process one high level event. If nothing is ready at this time,
351 wait for something to happen (via gdb_wait_for_event), then process
352 it. Returns >0 if something was done otherwise returns <0 (this
353 can happen if there are no event sources to wait for). */
356 gdb_do_one_event (void)
358 static int event_source_head
= 0;
359 const int number_of_sources
= 3;
362 /* Any events already waiting in the queue? */
363 if (process_event ())
366 /* To level the fairness across event sources, we poll them in a
367 round-robin fashion. */
368 for (current
= 0; current
< number_of_sources
; current
++)
370 switch (event_source_head
)
373 /* Are any timers that are ready? If so, put an event on the
378 /* Are there events already waiting to be collected on the
379 monitored file descriptors? */
380 gdb_wait_for_event (0);
383 /* Are there any asynchronous event handlers ready? */
384 check_async_event_handlers ();
389 if (event_source_head
== number_of_sources
)
390 event_source_head
= 0;
393 /* Handle any new events collected. */
394 if (process_event ())
397 /* Block waiting for a new event. If gdb_wait_for_event returns -1,
398 we should get out because this means that there are no event
399 sources left. This will make the event loop stop, and the
402 if (gdb_wait_for_event (1) < 0)
405 /* Handle any new events occurred while waiting. */
406 if (process_event ())
409 /* If gdb_wait_for_event has returned 1, it means that one event has
410 been handled. We break out of the loop. */
414 /* Start up the event loop. This is the entry point to the event loop
415 from the command loop. */
418 start_event_loop (void)
420 /* Loop until there is nothing to do. This is the entry point to
421 the event loop engine. gdb_do_one_event will process one event
422 for each invocation. It blocks waiting for an event and then
426 volatile struct gdb_exception ex
;
429 TRY_CATCH (ex
, RETURN_MASK_ALL
)
431 result
= gdb_do_one_event ();
435 exception_print (gdb_stderr
, ex
);
437 /* If any exception escaped to here, we better enable
438 stdin. Otherwise, any command that calls async_disable_stdin,
439 and then throws, will leave stdin inoperable. */
440 async_enable_stdin ();
441 /* If we long-jumped out of do_one_event, we probably didn't
442 get around to resetting the prompt, which leaves readline
443 in a messed-up state. Reset it here. */
444 /* FIXME: this should really be a call to a hook that is
445 interface specific, because interfaces can display the
446 prompt in their own way. */
447 display_gdb_prompt (0);
448 /* This call looks bizarre, but it is required. If the user
449 entered a command that caused an error,
450 after_char_processing_hook won't be called from
451 rl_callback_read_char_wrapper. Using a cleanup there
452 won't work, since we want this function to be called
453 after a new prompt is printed. */
454 if (after_char_processing_hook
)
455 (*after_char_processing_hook
) ();
456 /* Maybe better to set a flag to be checked somewhere as to
457 whether display the prompt or not. */
463 /* We are done with the event loop. There are no more event sources
464 to listen to. So we exit GDB. */
469 /* Wrapper function for create_file_handler, so that the caller
470 doesn't have to know implementation details about the use of poll
473 add_file_handler (int fd
, handler_func
* proc
, gdb_client_data client_data
)
482 /* Check to see if poll () is usable. If not, we'll switch to
483 use select. This can happen on systems like
484 m68k-motorola-sys, `poll' cannot be used to wait for `stdin'.
485 On m68k-motorola-sysv, tty's are not stream-based and not
489 if (poll (&fds
, 1, 0) == 1 && (fds
.revents
& POLLNVAL
))
492 internal_error (__FILE__
, __LINE__
,
493 _("use_poll without HAVE_POLL"));
494 #endif /* HAVE_POLL */
499 create_file_handler (fd
, POLLIN
, proc
, client_data
);
501 internal_error (__FILE__
, __LINE__
,
502 _("use_poll without HAVE_POLL"));
506 create_file_handler (fd
, GDB_READABLE
| GDB_EXCEPTION
,
510 /* Add a file handler/descriptor to the list of descriptors we are
513 FD is the file descriptor for the file/stream to be listened to.
515 For the poll case, MASK is a combination (OR) of POLLIN,
516 POLLRDNORM, POLLRDBAND, POLLPRI, POLLOUT, POLLWRNORM, POLLWRBAND:
517 these are the events we are interested in. If any of them occurs,
518 proc should be called.
520 For the select case, MASK is a combination of READABLE, WRITABLE,
521 EXCEPTION. PROC is the procedure that will be called when an event
522 occurs for FD. CLIENT_DATA is the argument to pass to PROC. */
525 create_file_handler (int fd
, int mask
, handler_func
* proc
,
526 gdb_client_data client_data
)
528 file_handler
*file_ptr
;
530 /* Do we already have a file handler for this file? (We may be
531 changing its associated procedure). */
532 for (file_ptr
= gdb_notifier
.first_file_handler
; file_ptr
!= NULL
;
533 file_ptr
= file_ptr
->next_file
)
535 if (file_ptr
->fd
== fd
)
539 /* It is a new file descriptor. Add it to the list. Otherwise, just
540 change the data associated with it. */
541 if (file_ptr
== NULL
)
543 file_ptr
= (file_handler
*) xmalloc (sizeof (file_handler
));
545 file_ptr
->ready_mask
= 0;
546 file_ptr
->next_file
= gdb_notifier
.first_file_handler
;
547 gdb_notifier
.first_file_handler
= file_ptr
;
552 gdb_notifier
.num_fds
++;
553 if (gdb_notifier
.poll_fds
)
554 gdb_notifier
.poll_fds
=
555 (struct pollfd
*) xrealloc (gdb_notifier
.poll_fds
,
556 (gdb_notifier
.num_fds
557 * sizeof (struct pollfd
)));
559 gdb_notifier
.poll_fds
=
560 (struct pollfd
*) xmalloc (sizeof (struct pollfd
));
561 (gdb_notifier
.poll_fds
+ gdb_notifier
.num_fds
- 1)->fd
= fd
;
562 (gdb_notifier
.poll_fds
+ gdb_notifier
.num_fds
- 1)->events
= mask
;
563 (gdb_notifier
.poll_fds
+ gdb_notifier
.num_fds
- 1)->revents
= 0;
565 internal_error (__FILE__
, __LINE__
,
566 _("use_poll without HAVE_POLL"));
567 #endif /* HAVE_POLL */
571 if (mask
& GDB_READABLE
)
572 FD_SET (fd
, &gdb_notifier
.check_masks
[0]);
574 FD_CLR (fd
, &gdb_notifier
.check_masks
[0]);
576 if (mask
& GDB_WRITABLE
)
577 FD_SET (fd
, &gdb_notifier
.check_masks
[1]);
579 FD_CLR (fd
, &gdb_notifier
.check_masks
[1]);
581 if (mask
& GDB_EXCEPTION
)
582 FD_SET (fd
, &gdb_notifier
.check_masks
[2]);
584 FD_CLR (fd
, &gdb_notifier
.check_masks
[2]);
586 if (gdb_notifier
.num_fds
<= fd
)
587 gdb_notifier
.num_fds
= fd
+ 1;
591 file_ptr
->proc
= proc
;
592 file_ptr
->client_data
= client_data
;
593 file_ptr
->mask
= mask
;
596 /* Remove the file descriptor FD from the list of monitored fd's:
597 i.e. we don't care anymore about events on the FD. */
599 delete_file_handler (int fd
)
601 file_handler
*file_ptr
, *prev_ptr
= NULL
;
605 struct pollfd
*new_poll_fds
;
608 /* Find the entry for the given file. */
610 for (file_ptr
= gdb_notifier
.first_file_handler
; file_ptr
!= NULL
;
611 file_ptr
= file_ptr
->next_file
)
613 if (file_ptr
->fd
== fd
)
617 if (file_ptr
== NULL
)
623 /* Create a new poll_fds array by copying every fd's information
624 but the one we want to get rid of. */
626 new_poll_fds
= (struct pollfd
*)
627 xmalloc ((gdb_notifier
.num_fds
- 1) * sizeof (struct pollfd
));
629 for (i
= 0, j
= 0; i
< gdb_notifier
.num_fds
; i
++)
631 if ((gdb_notifier
.poll_fds
+ i
)->fd
!= fd
)
633 (new_poll_fds
+ j
)->fd
= (gdb_notifier
.poll_fds
+ i
)->fd
;
634 (new_poll_fds
+ j
)->events
= (gdb_notifier
.poll_fds
+ i
)->events
;
635 (new_poll_fds
+ j
)->revents
636 = (gdb_notifier
.poll_fds
+ i
)->revents
;
640 xfree (gdb_notifier
.poll_fds
);
641 gdb_notifier
.poll_fds
= new_poll_fds
;
642 gdb_notifier
.num_fds
--;
644 internal_error (__FILE__
, __LINE__
,
645 _("use_poll without HAVE_POLL"));
646 #endif /* HAVE_POLL */
650 if (file_ptr
->mask
& GDB_READABLE
)
651 FD_CLR (fd
, &gdb_notifier
.check_masks
[0]);
652 if (file_ptr
->mask
& GDB_WRITABLE
)
653 FD_CLR (fd
, &gdb_notifier
.check_masks
[1]);
654 if (file_ptr
->mask
& GDB_EXCEPTION
)
655 FD_CLR (fd
, &gdb_notifier
.check_masks
[2]);
657 /* Find current max fd. */
659 if ((fd
+ 1) == gdb_notifier
.num_fds
)
661 gdb_notifier
.num_fds
--;
662 for (i
= gdb_notifier
.num_fds
; i
; i
--)
664 if (FD_ISSET (i
- 1, &gdb_notifier
.check_masks
[0])
665 || FD_ISSET (i
- 1, &gdb_notifier
.check_masks
[1])
666 || FD_ISSET (i
- 1, &gdb_notifier
.check_masks
[2]))
669 gdb_notifier
.num_fds
= i
;
673 /* Deactivate the file descriptor, by clearing its mask,
674 so that it will not fire again. */
678 /* Get rid of the file handler in the file handler list. */
679 if (file_ptr
== gdb_notifier
.first_file_handler
)
680 gdb_notifier
.first_file_handler
= file_ptr
->next_file
;
683 for (prev_ptr
= gdb_notifier
.first_file_handler
;
684 prev_ptr
->next_file
!= file_ptr
;
685 prev_ptr
= prev_ptr
->next_file
)
687 prev_ptr
->next_file
= file_ptr
->next_file
;
692 /* Handle the given event by calling the procedure associated to the
693 corresponding file handler. Called by process_event indirectly,
694 through event_ptr->proc. EVENT_FILE_DESC is file descriptor of the
695 event in the front of the event queue. */
697 handle_file_event (event_data data
)
699 file_handler
*file_ptr
;
704 int event_file_desc
= data
.integer
;
706 /* Search the file handler list to find one that matches the fd in
708 for (file_ptr
= gdb_notifier
.first_file_handler
; file_ptr
!= NULL
;
709 file_ptr
= file_ptr
->next_file
)
711 if (file_ptr
->fd
== event_file_desc
)
713 /* With poll, the ready_mask could have any of three events
714 set to 1: POLLHUP, POLLERR, POLLNVAL. These events
715 cannot be used in the requested event mask (events), but
716 they can be returned in the return mask (revents). We
717 need to check for those event too, and add them to the
718 mask which will be passed to the handler. */
720 /* See if the desired events (mask) match the received
721 events (ready_mask). */
726 /* POLLHUP means EOF, but can be combined with POLLIN to
727 signal more data to read. */
728 error_mask
= POLLHUP
| POLLERR
| POLLNVAL
;
729 mask
= file_ptr
->ready_mask
& (file_ptr
->mask
| error_mask
);
731 if ((mask
& (POLLERR
| POLLNVAL
)) != 0)
733 /* Work in progress. We may need to tell somebody
734 what kind of error we had. */
736 printf_unfiltered (_("Error detected on fd %d\n"),
739 printf_unfiltered (_("Invalid or non-`poll'able fd %d\n"),
746 internal_error (__FILE__
, __LINE__
,
747 _("use_poll without HAVE_POLL"));
748 #endif /* HAVE_POLL */
752 if (file_ptr
->ready_mask
& GDB_EXCEPTION
)
754 printf_unfiltered (_("Exception condition detected "
755 "on fd %d\n"), file_ptr
->fd
);
760 mask
= file_ptr
->ready_mask
& file_ptr
->mask
;
763 /* Clear the received events for next time around. */
764 file_ptr
->ready_mask
= 0;
766 /* If there was a match, then call the handler. */
768 (*file_ptr
->proc
) (file_ptr
->error
, file_ptr
->client_data
);
774 /* Called by gdb_do_one_event to wait for new events on the monitored
775 file descriptors. Queue file events as they are detected by the
776 poll. If BLOCK and if there are no events, this function will
777 block in the call to poll. Return -1 if there are no file
778 descriptors to monitor, otherwise return 0. */
780 gdb_wait_for_event (int block
)
782 file_handler
*file_ptr
;
783 gdb_event
*file_event_ptr
;
787 /* Make sure all output is done before getting another event. */
788 gdb_flush (gdb_stdout
);
789 gdb_flush (gdb_stderr
);
791 if (gdb_notifier
.num_fds
== 0)
800 timeout
= gdb_notifier
.timeout_valid
? gdb_notifier
.poll_timeout
: -1;
804 num_found
= poll (gdb_notifier
.poll_fds
,
805 (unsigned long) gdb_notifier
.num_fds
, timeout
);
807 /* Don't print anything if we get out of poll because of a
809 if (num_found
== -1 && errno
!= EINTR
)
810 perror_with_name (("poll"));
812 internal_error (__FILE__
, __LINE__
,
813 _("use_poll without HAVE_POLL"));
814 #endif /* HAVE_POLL */
818 struct timeval select_timeout
;
819 struct timeval
*timeout_p
;
822 timeout_p
= gdb_notifier
.timeout_valid
823 ? &gdb_notifier
.select_timeout
: NULL
;
826 memset (&select_timeout
, 0, sizeof (select_timeout
));
827 timeout_p
= &select_timeout
;
830 gdb_notifier
.ready_masks
[0] = gdb_notifier
.check_masks
[0];
831 gdb_notifier
.ready_masks
[1] = gdb_notifier
.check_masks
[1];
832 gdb_notifier
.ready_masks
[2] = gdb_notifier
.check_masks
[2];
833 num_found
= gdb_select (gdb_notifier
.num_fds
,
834 &gdb_notifier
.ready_masks
[0],
835 &gdb_notifier
.ready_masks
[1],
836 &gdb_notifier
.ready_masks
[2],
839 /* Clear the masks after an error from select. */
842 FD_ZERO (&gdb_notifier
.ready_masks
[0]);
843 FD_ZERO (&gdb_notifier
.ready_masks
[1]);
844 FD_ZERO (&gdb_notifier
.ready_masks
[2]);
846 /* Dont print anything if we got a signal, let gdb handle
849 perror_with_name (("select"));
853 /* Enqueue all detected file events. */
858 for (i
= 0; (i
< gdb_notifier
.num_fds
) && (num_found
> 0); i
++)
860 if ((gdb_notifier
.poll_fds
+ i
)->revents
)
865 for (file_ptr
= gdb_notifier
.first_file_handler
;
867 file_ptr
= file_ptr
->next_file
)
869 if (file_ptr
->fd
== (gdb_notifier
.poll_fds
+ i
)->fd
)
875 /* Enqueue an event only if this is still a new event for
877 if (file_ptr
->ready_mask
== 0)
879 file_event_ptr
= create_file_event (file_ptr
->fd
);
880 QUEUE_enque (gdb_event_p
, event_queue
, file_event_ptr
);
882 file_ptr
->ready_mask
= (gdb_notifier
.poll_fds
+ i
)->revents
;
886 internal_error (__FILE__
, __LINE__
,
887 _("use_poll without HAVE_POLL"));
888 #endif /* HAVE_POLL */
892 for (file_ptr
= gdb_notifier
.first_file_handler
;
893 (file_ptr
!= NULL
) && (num_found
> 0);
894 file_ptr
= file_ptr
->next_file
)
898 if (FD_ISSET (file_ptr
->fd
, &gdb_notifier
.ready_masks
[0]))
899 mask
|= GDB_READABLE
;
900 if (FD_ISSET (file_ptr
->fd
, &gdb_notifier
.ready_masks
[1]))
901 mask
|= GDB_WRITABLE
;
902 if (FD_ISSET (file_ptr
->fd
, &gdb_notifier
.ready_masks
[2]))
903 mask
|= GDB_EXCEPTION
;
910 /* Enqueue an event only if this is still a new event for
913 if (file_ptr
->ready_mask
== 0)
915 file_event_ptr
= create_file_event (file_ptr
->fd
);
916 QUEUE_enque (gdb_event_p
, event_queue
, file_event_ptr
);
918 file_ptr
->ready_mask
= mask
;
925 /* Create an asynchronous handler, allocating memory for it.
926 Return a pointer to the newly created handler.
927 This pointer will be used to invoke the handler by
928 invoke_async_signal_handler.
929 PROC is the function to call with CLIENT_DATA argument
930 whenever the handler is invoked. */
931 async_signal_handler
*
932 create_async_signal_handler (sig_handler_func
* proc
,
933 gdb_client_data client_data
)
935 async_signal_handler
*async_handler_ptr
;
938 (async_signal_handler
*) xmalloc (sizeof (async_signal_handler
));
939 async_handler_ptr
->ready
= 0;
940 async_handler_ptr
->next_handler
= NULL
;
941 async_handler_ptr
->proc
= proc
;
942 async_handler_ptr
->client_data
= client_data
;
943 if (sighandler_list
.first_handler
== NULL
)
944 sighandler_list
.first_handler
= async_handler_ptr
;
946 sighandler_list
.last_handler
->next_handler
= async_handler_ptr
;
947 sighandler_list
.last_handler
= async_handler_ptr
;
948 return async_handler_ptr
;
951 /* Call the handler from HANDLER immediately. This function runs
952 signal handlers when returning to the event loop would be too
955 call_async_signal_handler (struct async_signal_handler
*handler
)
957 (*handler
->proc
) (handler
->client_data
);
960 /* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information
961 will be used when the handlers are invoked, after we have waited
962 for some event. The caller of this function is the interrupt
963 handler associated with a signal. */
965 mark_async_signal_handler (async_signal_handler
* async_handler_ptr
)
967 async_handler_ptr
->ready
= 1;
970 /* Call all the handlers that are ready. Returns true if any was
973 invoke_async_signal_handlers (void)
975 async_signal_handler
*async_handler_ptr
;
978 /* Invoke ready handlers. */
982 for (async_handler_ptr
= sighandler_list
.first_handler
;
983 async_handler_ptr
!= NULL
;
984 async_handler_ptr
= async_handler_ptr
->next_handler
)
986 if (async_handler_ptr
->ready
)
989 if (async_handler_ptr
== NULL
)
992 async_handler_ptr
->ready
= 0;
993 (*async_handler_ptr
->proc
) (async_handler_ptr
->client_data
);
999 /* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
1000 Free the space allocated for it. */
1002 delete_async_signal_handler (async_signal_handler
** async_handler_ptr
)
1004 async_signal_handler
*prev_ptr
;
1006 if (sighandler_list
.first_handler
== (*async_handler_ptr
))
1008 sighandler_list
.first_handler
= (*async_handler_ptr
)->next_handler
;
1009 if (sighandler_list
.first_handler
== NULL
)
1010 sighandler_list
.last_handler
= NULL
;
1014 prev_ptr
= sighandler_list
.first_handler
;
1015 while (prev_ptr
&& prev_ptr
->next_handler
!= (*async_handler_ptr
))
1016 prev_ptr
= prev_ptr
->next_handler
;
1017 gdb_assert (prev_ptr
);
1018 prev_ptr
->next_handler
= (*async_handler_ptr
)->next_handler
;
1019 if (sighandler_list
.last_handler
== (*async_handler_ptr
))
1020 sighandler_list
.last_handler
= prev_ptr
;
1022 xfree ((*async_handler_ptr
));
1023 (*async_handler_ptr
) = NULL
;
1026 /* Create an asynchronous event handler, allocating memory for it.
1027 Return a pointer to the newly created handler. PROC is the
1028 function to call with CLIENT_DATA argument whenever the handler is
1030 async_event_handler
*
1031 create_async_event_handler (async_event_handler_func
*proc
,
1032 gdb_client_data client_data
)
1034 async_event_handler
*h
;
1036 h
= xmalloc (sizeof (*h
));
1038 h
->next_handler
= NULL
;
1040 h
->client_data
= client_data
;
1041 if (async_event_handler_list
.first_handler
== NULL
)
1042 async_event_handler_list
.first_handler
= h
;
1044 async_event_handler_list
.last_handler
->next_handler
= h
;
1045 async_event_handler_list
.last_handler
= h
;
1049 /* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information
1050 will be used by gdb_do_one_event. The caller will be whoever
1051 created the event source, and wants to signal that the event is
1052 ready to be handled. */
1054 mark_async_event_handler (async_event_handler
*async_handler_ptr
)
1056 async_handler_ptr
->ready
= 1;
1059 struct async_event_handler_data
1061 async_event_handler_func
* proc
;
1062 gdb_client_data client_data
;
1066 invoke_async_event_handler (event_data data
)
1068 struct async_event_handler_data
*hdata
= data
.ptr
;
1069 async_event_handler_func
* proc
= hdata
->proc
;
1070 gdb_client_data client_data
= hdata
->client_data
;
1073 (*proc
) (client_data
);
1076 /* Check if any asynchronous event handlers are ready, and queue
1077 events in the ready queue for any that are. */
1079 check_async_event_handlers (void)
1081 async_event_handler
*async_handler_ptr
;
1082 struct async_event_handler_data
*hdata
;
1083 struct gdb_event
*event_ptr
;
1086 for (async_handler_ptr
= async_event_handler_list
.first_handler
;
1087 async_handler_ptr
!= NULL
;
1088 async_handler_ptr
= async_handler_ptr
->next_handler
)
1090 if (async_handler_ptr
->ready
)
1092 async_handler_ptr
->ready
= 0;
1094 hdata
= xmalloc (sizeof (*hdata
));
1096 hdata
->proc
= async_handler_ptr
->proc
;
1097 hdata
->client_data
= async_handler_ptr
->client_data
;
1101 event_ptr
= create_event (invoke_async_event_handler
, data
);
1102 QUEUE_enque (gdb_event_p
, event_queue
, event_ptr
);
1107 /* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
1108 Free the space allocated for it. */
1110 delete_async_event_handler (async_event_handler
**async_handler_ptr
)
1112 async_event_handler
*prev_ptr
;
1114 if (async_event_handler_list
.first_handler
== *async_handler_ptr
)
1116 async_event_handler_list
.first_handler
1117 = (*async_handler_ptr
)->next_handler
;
1118 if (async_event_handler_list
.first_handler
== NULL
)
1119 async_event_handler_list
.last_handler
= NULL
;
1123 prev_ptr
= async_event_handler_list
.first_handler
;
1124 while (prev_ptr
&& prev_ptr
->next_handler
!= *async_handler_ptr
)
1125 prev_ptr
= prev_ptr
->next_handler
;
1126 gdb_assert (prev_ptr
);
1127 prev_ptr
->next_handler
= (*async_handler_ptr
)->next_handler
;
1128 if (async_event_handler_list
.last_handler
== (*async_handler_ptr
))
1129 async_event_handler_list
.last_handler
= prev_ptr
;
1131 xfree (*async_handler_ptr
);
1132 *async_handler_ptr
= NULL
;
1135 /* Create a timer that will expire in MILLISECONDS from now. When the
1136 timer is ready, PROC will be executed. At creation, the timer is
1137 aded to the timers queue. This queue is kept sorted in order of
1138 increasing timers. Return a handle to the timer struct. */
1140 create_timer (int milliseconds
, timer_handler_func
* proc
,
1141 gdb_client_data client_data
)
1143 struct gdb_timer
*timer_ptr
, *timer_index
, *prev_timer
;
1144 struct timeval time_now
, delta
;
1146 /* Compute seconds. */
1147 delta
.tv_sec
= milliseconds
/ 1000;
1148 /* Compute microseconds. */
1149 delta
.tv_usec
= (milliseconds
% 1000) * 1000;
1151 gettimeofday (&time_now
, NULL
);
1153 timer_ptr
= (struct gdb_timer
*) xmalloc (sizeof (*timer_ptr
));
1154 timer_ptr
->when
.tv_sec
= time_now
.tv_sec
+ delta
.tv_sec
;
1155 timer_ptr
->when
.tv_usec
= time_now
.tv_usec
+ delta
.tv_usec
;
1157 if (timer_ptr
->when
.tv_usec
>= 1000000)
1159 timer_ptr
->when
.tv_sec
+= 1;
1160 timer_ptr
->when
.tv_usec
-= 1000000;
1162 timer_ptr
->proc
= proc
;
1163 timer_ptr
->client_data
= client_data
;
1164 timer_list
.num_timers
++;
1165 timer_ptr
->timer_id
= timer_list
.num_timers
;
1167 /* Now add the timer to the timer queue, making sure it is sorted in
1168 increasing order of expiration. */
1170 for (timer_index
= timer_list
.first_timer
;
1171 timer_index
!= NULL
;
1172 timer_index
= timer_index
->next
)
1174 /* If the seconds field is greater or if it is the same, but the
1175 microsecond field is greater. */
1176 if ((timer_index
->when
.tv_sec
> timer_ptr
->when
.tv_sec
)
1177 || ((timer_index
->when
.tv_sec
== timer_ptr
->when
.tv_sec
)
1178 && (timer_index
->when
.tv_usec
> timer_ptr
->when
.tv_usec
)))
1182 if (timer_index
== timer_list
.first_timer
)
1184 timer_ptr
->next
= timer_list
.first_timer
;
1185 timer_list
.first_timer
= timer_ptr
;
1190 for (prev_timer
= timer_list
.first_timer
;
1191 prev_timer
->next
!= timer_index
;
1192 prev_timer
= prev_timer
->next
)
1195 prev_timer
->next
= timer_ptr
;
1196 timer_ptr
->next
= timer_index
;
1199 gdb_notifier
.timeout_valid
= 0;
1200 return timer_ptr
->timer_id
;
1203 /* There is a chance that the creator of the timer wants to get rid of
1204 it before it expires. */
1206 delete_timer (int id
)
1208 struct gdb_timer
*timer_ptr
, *prev_timer
= NULL
;
1210 /* Find the entry for the given timer. */
1212 for (timer_ptr
= timer_list
.first_timer
; timer_ptr
!= NULL
;
1213 timer_ptr
= timer_ptr
->next
)
1215 if (timer_ptr
->timer_id
== id
)
1219 if (timer_ptr
== NULL
)
1221 /* Get rid of the timer in the timer list. */
1222 if (timer_ptr
== timer_list
.first_timer
)
1223 timer_list
.first_timer
= timer_ptr
->next
;
1226 for (prev_timer
= timer_list
.first_timer
;
1227 prev_timer
->next
!= timer_ptr
;
1228 prev_timer
= prev_timer
->next
)
1230 prev_timer
->next
= timer_ptr
->next
;
1234 gdb_notifier
.timeout_valid
= 0;
1237 /* When a timer event is put on the event queue, it will be handled by
1238 this function. Just call the associated procedure and delete the
1239 timer event from the event queue. Repeat this for each timer that
1242 handle_timer_event (event_data dummy
)
1244 struct timeval time_now
;
1245 struct gdb_timer
*timer_ptr
, *saved_timer
;
1247 gettimeofday (&time_now
, NULL
);
1248 timer_ptr
= timer_list
.first_timer
;
1250 while (timer_ptr
!= NULL
)
1252 if ((timer_ptr
->when
.tv_sec
> time_now
.tv_sec
)
1253 || ((timer_ptr
->when
.tv_sec
== time_now
.tv_sec
)
1254 && (timer_ptr
->when
.tv_usec
> time_now
.tv_usec
)))
1257 /* Get rid of the timer from the beginning of the list. */
1258 timer_list
.first_timer
= timer_ptr
->next
;
1259 saved_timer
= timer_ptr
;
1260 timer_ptr
= timer_ptr
->next
;
1261 /* Call the procedure associated with that timer. */
1262 (*saved_timer
->proc
) (saved_timer
->client_data
);
1263 xfree (saved_timer
);
1266 gdb_notifier
.timeout_valid
= 0;
1269 /* Check whether any timers in the timers queue are ready. If at least
1270 one timer is ready, stick an event onto the event queue. Even in
1271 case more than one timer is ready, one event is enough, because the
1272 handle_timer_event() will go through the timers list and call the
1273 procedures associated with all that have expired.l Update the
1274 timeout for the select() or poll() as well. */
1278 struct timeval time_now
, delta
;
1279 gdb_event
*event_ptr
;
1281 if (timer_list
.first_timer
!= NULL
)
1283 gettimeofday (&time_now
, NULL
);
1284 delta
.tv_sec
= timer_list
.first_timer
->when
.tv_sec
- time_now
.tv_sec
;
1285 delta
.tv_usec
= timer_list
.first_timer
->when
.tv_usec
- time_now
.tv_usec
;
1287 if (delta
.tv_usec
< 0)
1290 delta
.tv_usec
+= 1000000;
1293 /* Oops it expired already. Tell select / poll to return
1294 immediately. (Cannot simply test if delta.tv_sec is negative
1295 because time_t might be unsigned.) */
1296 if (timer_list
.first_timer
->when
.tv_sec
< time_now
.tv_sec
1297 || (timer_list
.first_timer
->when
.tv_sec
== time_now
.tv_sec
1298 && timer_list
.first_timer
->when
.tv_usec
< time_now
.tv_usec
))
1304 if (delta
.tv_sec
== 0 && delta
.tv_usec
== 0)
1306 event_ptr
= (gdb_event
*) xmalloc (sizeof (gdb_event
));
1307 event_ptr
->proc
= handle_timer_event
;
1308 event_ptr
->data
.integer
= timer_list
.first_timer
->timer_id
;
1309 QUEUE_enque (gdb_event_p
, event_queue
, event_ptr
);
1312 /* Now we need to update the timeout for select/ poll, because
1313 we don't want to sit there while this timer is expiring. */
1317 gdb_notifier
.poll_timeout
= delta
.tv_sec
* 1000;
1319 internal_error (__FILE__
, __LINE__
,
1320 _("use_poll without HAVE_POLL"));
1321 #endif /* HAVE_POLL */
1325 gdb_notifier
.select_timeout
.tv_sec
= delta
.tv_sec
;
1326 gdb_notifier
.select_timeout
.tv_usec
= delta
.tv_usec
;
1328 gdb_notifier
.timeout_valid
= 1;
1331 gdb_notifier
.timeout_valid
= 0;