1 /* Event loop machinery for GDB, the GNU debugger.
2 Copyright 1999, 2000, 2001 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 2 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, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
24 #include "event-loop.h"
25 #include "event-top.h"
28 #if defined (HAVE_POLL_H)
30 #elif defined (HAVE_SYS_POLL_H)
35 #include <sys/types.h>
36 #include "gdb_string.h"
40 /* Type of the mask arguments to select. */
44 /* All this stuff below is not required if select is used as God(tm)
45 intended, with the FD_* macros. Are there any implementations of
46 select which don't have FD_SET and other standard FD_* macros? I
47 don't think there are, but if I'm wrong, we need to catch them. */
48 #error FD_SET must be defined if select function is to be used!
54 #define SELECT_MASK void
56 #define SELECT_MASK int
59 /* Define "NBBY" (number of bits per byte) if it's not already defined. */
65 /* Define the number of fd_masks in an fd_set */
69 #define FD_SETSIZE OPEN_MAX
71 #define FD_SETSIZE 256
75 #define howmany(x, y) (((x)+((y)-1))/(y))
78 #define NFDBITS NBBY*sizeof(fd_mask)
80 #define MASK_SIZE howmany(FD_SETSIZE, NFDBITS)
82 #endif /* NO_FD_SET */
83 #endif /* !HAVE_POLL */
86 typedef struct gdb_event gdb_event;
87 typedef void (event_handler_func) (int);
89 /* Event for the GDB event system. Events are queued by calling
90 async_queue_event and serviced later on by gdb_do_one_event. An
91 event can be, for instance, a file descriptor becoming ready to be
92 read. Servicing an event simply means that the procedure PROC will
93 be called. We have 2 queues, one for file handlers that we listen
94 to in the event loop, and one for the file handlers+events that are
95 ready. The procedure PROC associated with each event is always the
96 same (handle_file_event). Its duty is to invoke the handler
97 associated with the file descriptor whose state change generated
98 the event, plus doing other cleanups and such. */
102 event_handler_func *proc; /* Procedure to call to service this event. */
103 int fd; /* File descriptor that is ready. */
104 struct gdb_event *next_event; /* Next in list of events or NULL. */
107 /* Information about each file descriptor we register with the event
110 typedef struct file_handler
112 int fd; /* File descriptor. */
113 int mask; /* Events we want to monitor: POLLIN, etc. */
114 int ready_mask; /* Events that have been seen since
116 handler_func *proc; /* Procedure to call when fd is ready. */
117 gdb_client_data client_data; /* Argument to pass to proc. */
118 int error; /* Was an error detected on this fd? */
119 struct file_handler *next_file; /* Next registered file descriptor. */
123 /* PROC is a function to be invoked when the READY flag is set. This
124 happens when there has been a signal and the corresponding signal
125 handler has 'triggered' this async_signal_handler for
126 execution. The actual work to be done in response to a signal will
127 be carried out by PROC at a later time, within process_event. This
128 provides a deferred execution of signal handlers.
129 Async_init_signals takes care of setting up such an
130 asyn_signal_handler for each interesting signal. */
131 typedef struct async_signal_handler
133 int ready; /* If ready, call this handler from the main event loop,
134 using invoke_async_handler. */
135 struct async_signal_handler *next_handler; /* Ptr to next handler */
136 sig_handler_func *proc; /* Function to call to do the work */
137 gdb_client_data client_data; /* Argument to async_handler_func */
139 async_signal_handler;
143 - the first event in the queue is the head of the queue.
144 It will be the next to be serviced.
145 - the last event in the queue
147 Events can be inserted at the front of the queue or at the end of
148 the queue. Events will be extracted from the queue for processing
149 starting from the head. Therefore, events inserted at the head of
150 the queue will be processed in a last in first out fashion, while
151 those inserted at the tail of the queue will be processed in a first
152 in first out manner. All the fields are NULL if the queue is
157 gdb_event *first_event; /* First pending event */
158 gdb_event *last_event; /* Last pending event */
162 /* Gdb_notifier is just a list of file descriptors gdb is interested in.
163 These are the input file descriptor, and the target file
164 descriptor. We have two flavors of the notifier, one for platforms
165 that have the POLL function, the other for those that don't, and
166 only support SELECT. Each of the elements in the gdb_notifier list is
167 basically a description of what kind of events gdb is interested
170 /* As of 1999-04-30 only the input file descriptor is registered with the
173 /* Do we use poll or select ? */
178 #endif /* HAVE_POLL */
180 static unsigned char use_poll = USE_POLL;
184 /* Ptr to head of file handler list. */
185 file_handler *first_file_handler;
188 /* Ptr to array of pollfd structures. */
189 struct pollfd *poll_fds;
191 /* Timeout in milliseconds for calls to poll(). */
195 /* Masks to be used in the next call to select.
196 Bits are set in response to calls to create_file_handler. */
197 fd_set check_masks[3];
199 /* What file descriptors were found ready by select. */
200 fd_set ready_masks[3];
202 /* Number of file descriptors to monitor. (for poll) */
203 /* Number of valid bits (highest fd value + 1). (for select) */
206 /* Time structure for calls to select(). */
207 struct timeval select_timeout;
209 /* Flag to tell whether the timeout should be used. */
214 /* Structure associated with a timer. PROC will be executed at the
215 first occasion after WHEN. */
220 struct gdb_timer *next;
221 timer_handler_func *proc; /* Function to call to do the work */
222 gdb_client_data client_data; /* Argument to async_handler_func */
226 /* List of currently active timers. It is sorted in order of
227 increasing timers. */
230 /* Pointer to first in timer list. */
231 struct gdb_timer *first_timer;
233 /* Id of the last timer created. */
238 /* All the async_signal_handlers gdb is interested in are kept onto
242 /* Pointer to first in handler list. */
243 async_signal_handler *first_handler;
245 /* Pointer to last in handler list. */
246 async_signal_handler *last_handler;
250 /* Are any of the handlers ready? Check this variable using
251 check_async_ready. This is used by process_event, to determine
252 whether or not to invoke the invoke_async_signal_handler
254 static int async_handler_ready = 0;
256 static void create_file_handler (int fd, int mask, handler_func * proc, gdb_client_data client_data);
257 static void invoke_async_signal_handler (void);
258 static void handle_file_event (int event_file_desc);
259 static int gdb_wait_for_event (void);
260 static int gdb_do_one_event (void *data);
261 static int check_async_ready (void);
262 static void async_queue_event (gdb_event * event_ptr, queue_position position);
263 static gdb_event *create_file_event (int fd);
264 static int process_event (void);
265 static void handle_timer_event (int dummy);
266 static void poll_timers (void);
269 /* Insert an event object into the gdb event queue at
270 the specified position.
271 POSITION can be head or tail, with values TAIL, HEAD.
272 EVENT_PTR points to the event to be inserted into the queue.
273 The caller must allocate memory for the event. It is freed
274 after the event has ben handled.
275 Events in the queue will be processed head to tail, therefore,
276 events inserted at the head of the queue will be processed
277 as last in first out. Event appended at the tail of the queue
278 will be processed first in first out. */
280 async_queue_event (gdb_event * event_ptr, queue_position position)
282 if (position == TAIL)
284 /* The event will become the new last_event. */
286 event_ptr->next_event = NULL;
287 if (event_queue.first_event == NULL)
288 event_queue.first_event = event_ptr;
290 event_queue.last_event->next_event = event_ptr;
291 event_queue.last_event = event_ptr;
293 else if (position == HEAD)
295 /* The event becomes the new first_event. */
297 event_ptr->next_event = event_queue.first_event;
298 if (event_queue.first_event == NULL)
299 event_queue.last_event = event_ptr;
300 event_queue.first_event = event_ptr;
304 /* Create a file event, to be enqueued in the event queue for
305 processing. The procedure associated to this event is always
306 handle_file_event, which will in turn invoke the one that was
307 associated to FD when it was registered with the event loop. */
309 create_file_event (int fd)
311 gdb_event *file_event_ptr;
313 file_event_ptr = (gdb_event *) xmalloc (sizeof (gdb_event));
314 file_event_ptr->proc = handle_file_event;
315 file_event_ptr->fd = fd;
316 return (file_event_ptr);
319 /* Process one event.
320 The event can be the next one to be serviced in the event queue,
321 or an asynchronous event handler can be invoked in response to
322 the reception of a signal.
323 If an event was processed (either way), 1 is returned otherwise
325 Scan the queue from head to tail, processing therefore the high
326 priority events first, by invoking the associated event handler
331 gdb_event *event_ptr, *prev_ptr;
332 event_handler_func *proc;
335 /* First let's see if there are any asynchronous event handlers that
336 are ready. These would be the result of invoking any of the
339 if (check_async_ready ())
341 invoke_async_signal_handler ();
345 /* Look in the event queue to find an event that is ready
348 for (event_ptr = event_queue.first_event; event_ptr != NULL;
349 event_ptr = event_ptr->next_event)
351 /* Call the handler for the event. */
353 proc = event_ptr->proc;
356 /* Let's get rid of the event from the event queue. We need to
357 do this now because while processing the event, the proc
358 function could end up calling 'error' and therefore jump out
359 to the caller of this function, gdb_do_one_event. In that
360 case, we would have on the event queue an event wich has been
361 processed, but not deleted. */
363 if (event_queue.first_event == event_ptr)
365 event_queue.first_event = event_ptr->next_event;
366 if (event_ptr->next_event == NULL)
367 event_queue.last_event = NULL;
371 prev_ptr = event_queue.first_event;
372 while (prev_ptr->next_event != event_ptr)
373 prev_ptr = prev_ptr->next_event;
375 prev_ptr->next_event = event_ptr->next_event;
376 if (event_ptr->next_event == NULL)
377 event_queue.last_event = prev_ptr;
381 /* Now call the procedure associated with the event. */
386 /* this is the case if there are no event on the event queue. */
390 /* Process one high level event. If nothing is ready at this time,
391 wait for something to happen (via gdb_wait_for_event), then process
392 it. Returns >0 if something was done otherwise returns <0 (this
393 can happen if there are no event sources to wait for). If an error
394 occurs catch_errors() which calls this function returns zero. */
397 gdb_do_one_event (void *data)
399 /* Any events already waiting in the queue? */
400 if (process_event ())
405 /* Are any timers that are ready? If so, put an event on the queue. */
408 /* Wait for a new event. If gdb_wait_for_event returns -1,
409 we should get out because this means that there are no
410 event sources left. This will make the event loop stop,
411 and the application exit. */
413 if (gdb_wait_for_event () < 0)
418 /* Handle any new events occurred while waiting. */
419 if (process_event ())
424 /* If gdb_wait_for_event has returned 1, it means that one
425 event has been handled. We break out of the loop. */
429 /* Start up the event loop. This is the entry point to the event loop
430 from the command loop. */
433 start_event_loop (void)
435 /* Loop until there is nothing to do. This is the entry point to the
436 event loop engine. gdb_do_one_event, called via catch_errors()
437 will process one event for each invocation. It blocks waits for
438 an event and then processes it. >0 when an event is processed, 0
439 when catch_errors() caught an error and <0 when there are no
440 longer any event sources registered. */
443 int result = catch_errors (gdb_do_one_event, 0, "", RETURN_MASK_ALL);
448 /* FIXME: this should really be a call to a hook that is
449 interface specific, because interfaces can display the
450 prompt in their own way. */
451 display_gdb_prompt (0);
452 /* Maybe better to set a flag to be checked somewhere as to
453 whether display the prompt or not. */
457 /* We are done with the event loop. There are no more event sources
458 to listen to. So we exit GDB. */
463 /* Wrapper function for create_file_handler, so that the caller
464 doesn't have to know implementation details about the use of poll
467 add_file_handler (int fd, handler_func * proc, gdb_client_data client_data)
476 /* Check to see if poll () is usable. If not, we'll switch to
477 use select. This can happen on systems like
478 m68k-motorola-sys, `poll' cannot be used to wait for `stdin'.
479 On m68k-motorola-sysv, tty's are not stream-based and not
483 if (poll (&fds, 1, 0) == 1 && (fds.revents & POLLNVAL))
486 internal_error (__FILE__, __LINE__,
487 "use_poll without HAVE_POLL");
488 #endif /* HAVE_POLL */
493 create_file_handler (fd, POLLIN, proc, client_data);
495 internal_error (__FILE__, __LINE__,
496 "use_poll without HAVE_POLL");
500 create_file_handler (fd, GDB_READABLE | GDB_EXCEPTION, proc, client_data);
503 /* Add a file handler/descriptor to the list of descriptors we are
505 FD is the file descriptor for the file/stream to be listened to.
506 For the poll case, MASK is a combination (OR) of
507 POLLIN, POLLRDNORM, POLLRDBAND, POLLPRI, POLLOUT, POLLWRNORM,
508 POLLWRBAND: these are the events we are interested in. If any of them
509 occurs, proc should be called.
510 For the select case, MASK is a combination of READABLE, WRITABLE, EXCEPTION.
511 PROC is the procedure that will be called when an event occurs for
512 FD. CLIENT_DATA is the argument to pass to PROC. */
514 create_file_handler (int fd, int mask, handler_func * proc, gdb_client_data client_data)
516 file_handler *file_ptr;
518 /* Do we already have a file handler for this file? (We may be
519 changing its associated procedure). */
520 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
521 file_ptr = file_ptr->next_file)
523 if (file_ptr->fd == fd)
527 /* It is a new file descriptor. Add it to the list. Otherwise, just
528 change the data associated with it. */
529 if (file_ptr == NULL)
531 file_ptr = (file_handler *) xmalloc (sizeof (file_handler));
533 file_ptr->ready_mask = 0;
534 file_ptr->next_file = gdb_notifier.first_file_handler;
535 gdb_notifier.first_file_handler = file_ptr;
537 file_ptr->proc = proc;
538 file_ptr->client_data = client_data;
539 file_ptr->mask = mask;
544 gdb_notifier.num_fds++;
545 if (gdb_notifier.poll_fds)
546 gdb_notifier.poll_fds =
547 (struct pollfd *) realloc (gdb_notifier.poll_fds,
548 (gdb_notifier.num_fds) * sizeof (struct pollfd));
550 gdb_notifier.poll_fds =
551 (struct pollfd *) xmalloc (sizeof (struct pollfd));
552 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->fd = fd;
553 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->events = mask;
554 (gdb_notifier.poll_fds + gdb_notifier.num_fds - 1)->revents = 0;
556 internal_error (__FILE__, __LINE__,
557 "use_poll without HAVE_POLL");
558 #endif /* HAVE_POLL */
562 if (mask & GDB_READABLE)
563 FD_SET (fd, &gdb_notifier.check_masks[0]);
565 FD_CLR (fd, &gdb_notifier.check_masks[0]);
567 if (mask & GDB_WRITABLE)
568 FD_SET (fd, &gdb_notifier.check_masks[1]);
570 FD_CLR (fd, &gdb_notifier.check_masks[1]);
572 if (mask & GDB_EXCEPTION)
573 FD_SET (fd, &gdb_notifier.check_masks[2]);
575 FD_CLR (fd, &gdb_notifier.check_masks[2]);
577 if (gdb_notifier.num_fds <= fd)
578 gdb_notifier.num_fds = fd + 1;
582 /* Remove the file descriptor FD from the list of monitored fd's:
583 i.e. we don't care anymore about events on the FD. */
585 delete_file_handler (int fd)
587 file_handler *file_ptr, *prev_ptr = NULL;
591 struct pollfd *new_poll_fds;
594 /* Find the entry for the given file. */
596 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
597 file_ptr = file_ptr->next_file)
599 if (file_ptr->fd == fd)
603 if (file_ptr == NULL)
609 /* Create a new poll_fds array by copying every fd's information but the
610 one we want to get rid of. */
613 (struct pollfd *) xmalloc ((gdb_notifier.num_fds - 1) * sizeof (struct pollfd));
615 for (i = 0, j = 0; i < gdb_notifier.num_fds; i++)
617 if ((gdb_notifier.poll_fds + i)->fd != fd)
619 (new_poll_fds + j)->fd = (gdb_notifier.poll_fds + i)->fd;
620 (new_poll_fds + j)->events = (gdb_notifier.poll_fds + i)->events;
621 (new_poll_fds + j)->revents = (gdb_notifier.poll_fds + i)->revents;
625 xfree (gdb_notifier.poll_fds);
626 gdb_notifier.poll_fds = new_poll_fds;
627 gdb_notifier.num_fds--;
629 internal_error (__FILE__, __LINE__,
630 "use_poll without HAVE_POLL");
631 #endif /* HAVE_POLL */
635 if (file_ptr->mask & GDB_READABLE)
636 FD_CLR (fd, &gdb_notifier.check_masks[0]);
637 if (file_ptr->mask & GDB_WRITABLE)
638 FD_CLR (fd, &gdb_notifier.check_masks[1]);
639 if (file_ptr->mask & GDB_EXCEPTION)
640 FD_CLR (fd, &gdb_notifier.check_masks[2]);
642 /* Find current max fd. */
644 if ((fd + 1) == gdb_notifier.num_fds)
646 gdb_notifier.num_fds--;
647 for (i = gdb_notifier.num_fds; i; i--)
649 if (FD_ISSET (i - 1, &gdb_notifier.check_masks[0])
650 || FD_ISSET (i - 1, &gdb_notifier.check_masks[1])
651 || FD_ISSET (i - 1, &gdb_notifier.check_masks[2]))
654 gdb_notifier.num_fds = i;
658 /* Deactivate the file descriptor, by clearing its mask,
659 so that it will not fire again. */
663 /* Get rid of the file handler in the file handler list. */
664 if (file_ptr == gdb_notifier.first_file_handler)
665 gdb_notifier.first_file_handler = file_ptr->next_file;
668 for (prev_ptr = gdb_notifier.first_file_handler;
669 prev_ptr->next_file != file_ptr;
670 prev_ptr = prev_ptr->next_file)
672 prev_ptr->next_file = file_ptr->next_file;
677 /* Handle the given event by calling the procedure associated to the
678 corresponding file handler. Called by process_event indirectly,
679 through event_ptr->proc. EVENT_FILE_DESC is file descriptor of the
680 event in the front of the event queue. */
682 handle_file_event (int event_file_desc)
684 file_handler *file_ptr;
688 int error_mask_returned;
691 /* Search the file handler list to find one that matches the fd in
693 for (file_ptr = gdb_notifier.first_file_handler; file_ptr != NULL;
694 file_ptr = file_ptr->next_file)
696 if (file_ptr->fd == event_file_desc)
698 /* With poll, the ready_mask could have any of three events
699 set to 1: POLLHUP, POLLERR, POLLNVAL. These events cannot
700 be used in the requested event mask (events), but they
701 can be returned in the return mask (revents). We need to
702 check for those event too, and add them to the mask which
703 will be passed to the handler. */
705 /* See if the desired events (mask) match the received
706 events (ready_mask). */
711 error_mask = POLLHUP | POLLERR | POLLNVAL;
712 mask = (file_ptr->ready_mask & file_ptr->mask) |
713 (file_ptr->ready_mask & error_mask);
714 error_mask_returned = mask & error_mask;
716 if (error_mask_returned != 0)
718 /* Work in progress. We may need to tell somebody what
719 kind of error we had. */
720 if (error_mask_returned & POLLHUP)
721 printf_unfiltered ("Hangup detected on fd %d\n", file_ptr->fd);
722 if (error_mask_returned & POLLERR)
723 printf_unfiltered ("Error detected on fd %d\n", file_ptr->fd);
724 if (error_mask_returned & POLLNVAL)
725 printf_unfiltered ("Invalid or non-`poll'able fd %d\n", file_ptr->fd);
731 internal_error (__FILE__, __LINE__,
732 "use_poll without HAVE_POLL");
733 #endif /* HAVE_POLL */
737 if (file_ptr->ready_mask & GDB_EXCEPTION)
739 printf_unfiltered ("Exception condition detected on fd %d\n", file_ptr->fd);
744 mask = file_ptr->ready_mask & file_ptr->mask;
747 /* Clear the received events for next time around. */
748 file_ptr->ready_mask = 0;
750 /* If there was a match, then call the handler. */
752 (*file_ptr->proc) (file_ptr->error, file_ptr->client_data);
758 /* Called by gdb_do_one_event to wait for new events on the
759 monitored file descriptors. Queue file events as they are
760 detected by the poll.
761 If there are no events, this function will block in the
763 Return -1 if there are no files descriptors to monitor,
764 otherwise return 0. */
766 gdb_wait_for_event (void)
768 file_handler *file_ptr;
769 gdb_event *file_event_ptr;
773 /* Make sure all output is done before getting another event. */
774 gdb_flush (gdb_stdout);
775 gdb_flush (gdb_stderr);
777 if (gdb_notifier.num_fds == 0)
784 poll (gdb_notifier.poll_fds,
785 (unsigned long) gdb_notifier.num_fds,
786 gdb_notifier.timeout_valid ? gdb_notifier.poll_timeout : -1);
788 /* Don't print anything if we get out of poll because of a
790 if (num_found == -1 && errno != EINTR)
791 perror_with_name ("Poll");
793 internal_error (__FILE__, __LINE__,
794 "use_poll without HAVE_POLL");
795 #endif /* HAVE_POLL */
799 gdb_notifier.ready_masks[0] = gdb_notifier.check_masks[0];
800 gdb_notifier.ready_masks[1] = gdb_notifier.check_masks[1];
801 gdb_notifier.ready_masks[2] = gdb_notifier.check_masks[2];
802 num_found = select (gdb_notifier.num_fds,
803 &gdb_notifier.ready_masks[0],
804 &gdb_notifier.ready_masks[1],
805 &gdb_notifier.ready_masks[2],
806 gdb_notifier.timeout_valid
807 ? &gdb_notifier.select_timeout : NULL);
809 /* Clear the masks after an error from select. */
812 FD_ZERO (&gdb_notifier.ready_masks[0]);
813 FD_ZERO (&gdb_notifier.ready_masks[1]);
814 FD_ZERO (&gdb_notifier.ready_masks[2]);
815 /* Dont print anything is we got a signal, let gdb handle it. */
817 perror_with_name ("Select");
821 /* Enqueue all detected file events. */
826 for (i = 0; (i < gdb_notifier.num_fds) && (num_found > 0); i++)
828 if ((gdb_notifier.poll_fds + i)->revents)
833 for (file_ptr = gdb_notifier.first_file_handler;
835 file_ptr = file_ptr->next_file)
837 if (file_ptr->fd == (gdb_notifier.poll_fds + i)->fd)
843 /* Enqueue an event only if this is still a new event for
845 if (file_ptr->ready_mask == 0)
847 file_event_ptr = create_file_event (file_ptr->fd);
848 async_queue_event (file_event_ptr, TAIL);
852 file_ptr->ready_mask = (gdb_notifier.poll_fds + i)->revents;
855 internal_error (__FILE__, __LINE__,
856 "use_poll without HAVE_POLL");
857 #endif /* HAVE_POLL */
861 for (file_ptr = gdb_notifier.first_file_handler;
862 (file_ptr != NULL) && (num_found > 0);
863 file_ptr = file_ptr->next_file)
867 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[0]))
868 mask |= GDB_READABLE;
869 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[1]))
870 mask |= GDB_WRITABLE;
871 if (FD_ISSET (file_ptr->fd, &gdb_notifier.ready_masks[2]))
872 mask |= GDB_EXCEPTION;
879 /* Enqueue an event only if this is still a new event for
882 if (file_ptr->ready_mask == 0)
884 file_event_ptr = create_file_event (file_ptr->fd);
885 async_queue_event (file_event_ptr, TAIL);
887 file_ptr->ready_mask = mask;
894 /* Create an asynchronous handler, allocating memory for it.
895 Return a pointer to the newly created handler.
896 This pointer will be used to invoke the handler by
897 invoke_async_signal_handler.
898 PROC is the function to call with CLIENT_DATA argument
899 whenever the handler is invoked. */
900 async_signal_handler *
901 create_async_signal_handler (sig_handler_func * proc, gdb_client_data client_data)
903 async_signal_handler *async_handler_ptr;
906 (async_signal_handler *) xmalloc (sizeof (async_signal_handler));
907 async_handler_ptr->ready = 0;
908 async_handler_ptr->next_handler = NULL;
909 async_handler_ptr->proc = proc;
910 async_handler_ptr->client_data = client_data;
911 if (sighandler_list.first_handler == NULL)
912 sighandler_list.first_handler = async_handler_ptr;
914 sighandler_list.last_handler->next_handler = async_handler_ptr;
915 sighandler_list.last_handler = async_handler_ptr;
916 return async_handler_ptr;
919 /* Mark the handler (ASYNC_HANDLER_PTR) as ready. This information will
920 be used when the handlers are invoked, after we have waited for
921 some event. The caller of this function is the interrupt handler
922 associated with a signal. */
924 mark_async_signal_handler (async_signal_handler * async_handler_ptr)
926 ((async_signal_handler *) async_handler_ptr)->ready = 1;
927 async_handler_ready = 1;
930 /* Call all the handlers that are ready. */
932 invoke_async_signal_handler (void)
934 async_signal_handler *async_handler_ptr;
936 if (async_handler_ready == 0)
938 async_handler_ready = 0;
940 /* Invoke ready handlers. */
944 for (async_handler_ptr = sighandler_list.first_handler;
945 async_handler_ptr != NULL;
946 async_handler_ptr = async_handler_ptr->next_handler)
948 if (async_handler_ptr->ready)
951 if (async_handler_ptr == NULL)
953 async_handler_ptr->ready = 0;
954 (*async_handler_ptr->proc) (async_handler_ptr->client_data);
960 /* Delete an asynchronous handler (ASYNC_HANDLER_PTR).
961 Free the space allocated for it. */
963 delete_async_signal_handler (async_signal_handler ** async_handler_ptr)
965 async_signal_handler *prev_ptr;
967 if (sighandler_list.first_handler == (*async_handler_ptr))
969 sighandler_list.first_handler = (*async_handler_ptr)->next_handler;
970 if (sighandler_list.first_handler == NULL)
971 sighandler_list.last_handler = NULL;
975 prev_ptr = sighandler_list.first_handler;
976 while (prev_ptr->next_handler != (*async_handler_ptr) && prev_ptr)
977 prev_ptr = prev_ptr->next_handler;
978 prev_ptr->next_handler = (*async_handler_ptr)->next_handler;
979 if (sighandler_list.last_handler == (*async_handler_ptr))
980 sighandler_list.last_handler = prev_ptr;
982 xfree ((*async_handler_ptr));
983 (*async_handler_ptr) = NULL;
986 /* Is it necessary to call invoke_async_signal_handler? */
988 check_async_ready (void)
990 return async_handler_ready;
993 /* Create a timer that will expire in MILLISECONDS from now. When the
994 timer is ready, PROC will be executed. At creation, the timer is
995 aded to the timers queue. This queue is kept sorted in order of
996 increasing timers. Return a handle to the timer struct. */
998 create_timer (int milliseconds, timer_handler_func * proc, gdb_client_data client_data)
1000 struct gdb_timer *timer_ptr, *timer_index, *prev_timer;
1001 struct timeval time_now, delta;
1003 /* compute seconds */
1004 delta.tv_sec = milliseconds / 1000;
1005 /* compute microseconds */
1006 delta.tv_usec = (milliseconds % 1000) * 1000;
1008 gettimeofday (&time_now, NULL);
1010 timer_ptr = (struct gdb_timer *) xmalloc (sizeof (gdb_timer));
1011 timer_ptr->when.tv_sec = time_now.tv_sec + delta.tv_sec;
1012 timer_ptr->when.tv_usec = time_now.tv_usec + delta.tv_usec;
1014 if (timer_ptr->when.tv_usec >= 1000000)
1016 timer_ptr->when.tv_sec += 1;
1017 timer_ptr->when.tv_usec -= 1000000;
1019 timer_ptr->proc = proc;
1020 timer_ptr->client_data = client_data;
1021 timer_list.num_timers++;
1022 timer_ptr->timer_id = timer_list.num_timers;
1024 /* Now add the timer to the timer queue, making sure it is sorted in
1025 increasing order of expiration. */
1027 for (timer_index = timer_list.first_timer;
1028 timer_index != NULL;
1029 timer_index = timer_index->next)
1031 /* If the seconds field is greater or if it is the same, but the
1032 microsecond field is greater. */
1033 if ((timer_index->when.tv_sec > timer_ptr->when.tv_sec) ||
1034 ((timer_index->when.tv_sec == timer_ptr->when.tv_sec)
1035 && (timer_index->when.tv_usec > timer_ptr->when.tv_usec)))
1039 if (timer_index == timer_list.first_timer)
1041 timer_ptr->next = timer_list.first_timer;
1042 timer_list.first_timer = timer_ptr;
1047 for (prev_timer = timer_list.first_timer;
1048 prev_timer->next != timer_index;
1049 prev_timer = prev_timer->next)
1052 prev_timer->next = timer_ptr;
1053 timer_ptr->next = timer_index;
1056 gdb_notifier.timeout_valid = 0;
1057 return timer_ptr->timer_id;
1060 /* There is a chance that the creator of the timer wants to get rid of
1061 it before it expires. */
1063 delete_timer (int id)
1065 struct gdb_timer *timer_ptr, *prev_timer = NULL;
1067 /* Find the entry for the given timer. */
1069 for (timer_ptr = timer_list.first_timer; timer_ptr != NULL;
1070 timer_ptr = timer_ptr->next)
1072 if (timer_ptr->timer_id == id)
1076 if (timer_ptr == NULL)
1078 /* Get rid of the timer in the timer list. */
1079 if (timer_ptr == timer_list.first_timer)
1080 timer_list.first_timer = timer_ptr->next;
1083 for (prev_timer = timer_list.first_timer;
1084 prev_timer->next != timer_ptr;
1085 prev_timer = prev_timer->next)
1087 prev_timer->next = timer_ptr->next;
1091 gdb_notifier.timeout_valid = 0;
1094 /* When a timer event is put on the event queue, it will be handled by
1095 this function. Just call the assiciated procedure and delete the
1096 timer event from the event queue. Repeat this for each timer that
1099 handle_timer_event (int dummy)
1101 struct timeval time_now;
1102 struct gdb_timer *timer_ptr, *saved_timer;
1104 gettimeofday (&time_now, NULL);
1105 timer_ptr = timer_list.first_timer;
1107 while (timer_ptr != NULL)
1109 if ((timer_ptr->when.tv_sec > time_now.tv_sec) ||
1110 ((timer_ptr->when.tv_sec == time_now.tv_sec) &&
1111 (timer_ptr->when.tv_usec > time_now.tv_usec)))
1114 /* Get rid of the timer from the beginning of the list. */
1115 timer_list.first_timer = timer_ptr->next;
1116 saved_timer = timer_ptr;
1117 timer_ptr = timer_ptr->next;
1118 /* Call the procedure associated with that timer. */
1119 (*saved_timer->proc) (saved_timer->client_data);
1120 xfree (saved_timer);
1123 gdb_notifier.timeout_valid = 0;
1126 /* Check whether any timers in the timers queue are ready. If at least
1127 one timer is ready, stick an event onto the event queue. Even in
1128 case more than one timer is ready, one event is enough, because the
1129 handle_timer_event() will go through the timers list and call the
1130 procedures associated with all that have expired. Update the
1131 timeout for the select() or poll() as well. */
1135 struct timeval time_now, delta;
1136 gdb_event *event_ptr;
1138 if (timer_list.first_timer != NULL)
1140 gettimeofday (&time_now, NULL);
1141 delta.tv_sec = timer_list.first_timer->when.tv_sec - time_now.tv_sec;
1142 delta.tv_usec = timer_list.first_timer->when.tv_usec - time_now.tv_usec;
1144 if (delta.tv_usec < 0)
1147 delta.tv_usec += 1000000;
1150 /* Oops it expired already. Tell select / poll to return
1151 immediately. (Cannot simply test if delta.tv_sec is negative
1152 because time_t might be unsigned.) */
1153 if (timer_list.first_timer->when.tv_sec < time_now.tv_sec
1154 || (timer_list.first_timer->when.tv_sec == time_now.tv_sec
1155 && timer_list.first_timer->when.tv_usec < time_now.tv_usec))
1161 if (delta.tv_sec == 0 && delta.tv_usec == 0)
1163 event_ptr = (gdb_event *) xmalloc (sizeof (gdb_event));
1164 event_ptr->proc = handle_timer_event;
1165 event_ptr->fd = timer_list.first_timer->timer_id;
1166 async_queue_event (event_ptr, TAIL);
1169 /* Now we need to update the timeout for select/ poll, because we
1170 don't want to sit there while this timer is expiring. */
1174 gdb_notifier.poll_timeout = delta.tv_sec * 1000;
1176 internal_error (__FILE__, __LINE__,
1177 "use_poll without HAVE_POLL");
1178 #endif /* HAVE_POLL */
1182 gdb_notifier.select_timeout.tv_sec = delta.tv_sec;
1183 gdb_notifier.select_timeout.tv_usec = delta.tv_usec;
1185 gdb_notifier.timeout_valid = 1;
1188 gdb_notifier.timeout_valid = 0;