aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_scheduler_lib.h
diff options
context:
space:
mode:
authorlurchi <lurchi@strangeplace.net>2017-08-18 16:17:28 +0200
committerlurchi <lurchi@strangeplace.net>2017-08-18 16:17:28 +0200
commite29921e503d8da33f0b9b15302288c5572ec9bf4 (patch)
tree0bf5efe2ea136fd292ffc6699214b2800cd09ef4 /src/include/gnunet_scheduler_lib.h
parent59837ecc5f54c39322cc5afba2dfc9fed154a8fe (diff)
downloadgnunet-e29921e503d8da33f0b9b15302288c5572ec9bf4.tar.gz
gnunet-e29921e503d8da33f0b9b15302288c5572ec9bf4.zip
implement bookkeeping about which FDs related to a tasks have been marked ready (required API change in GNUNET_SCHEDULER_task_ready)
Diffstat (limited to 'src/include/gnunet_scheduler_lib.h')
-rw-r--r--src/include/gnunet_scheduler_lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gnunet_scheduler_lib.h b/src/include/gnunet_scheduler_lib.h
index dea0a006a..5f9389726 100644
--- a/src/include/gnunet_scheduler_lib.h
+++ b/src/include/gnunet_scheduler_lib.h
@@ -222,11 +222,11 @@ struct GNUNET_SCHEDULER_TaskContext
222 * that the task is ready (with the respective priority). 222 * that the task is ready (with the respective priority).
223 * 223 *
224 * @param task the task that is ready 224 * @param task the task that is ready
225 * @param et information about why the task is ready 225 * @param fdi information about the related FD
226 */ 226 */
227void 227void
228GNUNET_SCHEDULER_task_ready (struct GNUNET_SCHEDULER_Task *task, 228GNUNET_SCHEDULER_task_ready (struct GNUNET_SCHEDULER_Task *task,
229 enum GNUNET_SCHEDULER_EventType et); 229 struct GNUNET_SCHEDULER_FdInfo *fdi);
230 230
231 231
232/** 232/**