Home | History | Annotate | Download | only in gdb

Lines Matching refs:event

1 /* Serial interface for a selectable event.
22 /* This is used to be able to signal the event loop (or any other
26 to the event loop, by having the signal handler set a struct
27 serial_event object, and having the event loop wait for that same
28 object to the readable. Once readable, the event loop breaks out
38 event. The only valid operation on this object is to wait until it
40 extern int serial_event_fd (struct serial_event *event);
42 /* Set the event. This signals the file descriptor returned by
44 extern void serial_event_set (struct serial_event *event);
46 /* Clear the event. The file descriptor returned by serial_event_fd
49 extern void serial_event_clear (struct serial_event *event);