aboutsummaryrefslogtreecommitdiff
path: root/src/pq/pq.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pq/pq.h')
-rw-r--r--src/pq/pq.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/pq/pq.h b/src/pq/pq.h
index 3c89626a9..bad99b307 100644
--- a/src/pq/pq.h
+++ b/src/pq/pq.h
@@ -77,6 +77,21 @@ struct GNUNET_PQ_Context
77 * Lock to access @e channel_map. 77 * Lock to access @e channel_map.
78 */ 78 */
79 pthread_mutex_t notify_lock; 79 pthread_mutex_t notify_lock;
80
81 /**
82 * Task responsible for processing events.
83 */
84 struct GNUNET_SCHEDULER_Task *event_task;
85
86 /**
87 * File descriptor wrapper for @e event_task.
88 */
89 struct GNUNET_NETWORK_Handle *rfd;
90
91 /**
92 * Is scheduling via the GNUnet scheduler desired?
93 */
94 bool scheduler_on;
80}; 95};
81 96
82#endif 97#endif