A struct representing an event the select driver is waiting for. More...
Data Fields | |
struct Scheduled * | prev |
struct Scheduled * | next |
struct GNUNET_SCHEDULER_Task * | task |
the task, the event is related to More... | |
struct GNUNET_SCHEDULER_FdInfo * | fdi |
information about the network socket / file descriptor where the event is expected to occur More... | |
enum GNUNET_SCHEDULER_EventType | et |
the event types (multiple event types can be ORed) the select driver is expected to wait for More... | |
A struct representing an event the select driver is waiting for.
Definition at line 262 of file scheduler.c.
struct Scheduled* Scheduled::prev |
Definition at line 264 of file scheduler.c.
struct Scheduled* Scheduled::next |
Definition at line 266 of file scheduler.c.
Referenced by select_del().
struct GNUNET_SCHEDULER_Task* Scheduled::task |
the task, the event is related to
Definition at line 271 of file scheduler.c.
Referenced by select_add(), and select_del().
struct GNUNET_SCHEDULER_FdInfo* Scheduled::fdi |
information about the network socket / file descriptor where the event is expected to occur
Definition at line 277 of file scheduler.c.
Referenced by select_add().
enum GNUNET_SCHEDULER_EventType Scheduled::et |
the event types (multiple event types can be ORed) the select driver is expected to wait for
Definition at line 283 of file scheduler.c.
Referenced by select_add().