aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_scheduler_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-10-08 19:00:19 +0000
committerChristian Grothoff <christian@grothoff.org>2009-10-08 19:00:19 +0000
commitfe947a9704bed14c2fc74b2f2069596fe884cbad (patch)
tree644efdaa37d692b09f8e279bfe5e8b2ebe81448b /src/include/gnunet_scheduler_lib.h
parenta8b0ab037820f6a9f405be3855ce8d3ebbd4399b (diff)
downloadgnunet-fe947a9704bed14c2fc74b2f2069596fe884cbad.tar.gz
gnunet-fe947a9704bed14c2fc74b2f2069596fe884cbad.zip
better comments
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 db94f05ab..621e57fcf 100644
--- a/src/include/gnunet_scheduler_lib.h
+++ b/src/include/gnunet_scheduler_lib.h
@@ -482,7 +482,6 @@ GNUNET_SCHEDULER_add_write_file (struct GNUNET_SCHEDULER_Handle *sched,
482 * are satisfied). Use GNUNET_SCHEDULER_NO_TASK to not have any dependency 482 * are satisfied). Use GNUNET_SCHEDULER_NO_TASK to not have any dependency
483 * on completion of other tasks. 483 * on completion of other tasks.
484 * @param delay how long should we wait? Use GNUNET_TIME_UNIT_FOREVER_REL for "forever" 484 * @param delay how long should we wait? Use GNUNET_TIME_UNIT_FOREVER_REL for "forever"
485 * @param nfds highest-numbered file descriptor in any of the two sets plus one
486 * @param rs set of file descriptors we want to read (can be NULL) 485 * @param rs set of file descriptors we want to read (can be NULL)
487 * @param ws set of file descriptors we want to write (can be NULL) 486 * @param ws set of file descriptors we want to write (can be NULL)
488 * @param main main function of the task 487 * @param main main function of the task
@@ -497,7 +496,8 @@ GNUNET_SCHEDULER_add_select (struct GNUNET_SCHEDULER_Handle *sched,
497 GNUNET_SCHEDULER_TaskIdentifier 496 GNUNET_SCHEDULER_TaskIdentifier
498 prerequisite_task, 497 prerequisite_task,
499 struct GNUNET_TIME_Relative delay, 498 struct GNUNET_TIME_Relative delay,
500 const struct GNUNET_NETWORK_FDSet * rs, const struct GNUNET_NETWORK_FDSet * ws, 499 const struct GNUNET_NETWORK_FDSet * rs,
500 const struct GNUNET_NETWORK_FDSet * ws,
501 GNUNET_SCHEDULER_Task main, void *cls); 501 GNUNET_SCHEDULER_Task main, void *cls);
502 502
503#if 0 /* keep Emacsens' auto-indent happy */ 503#if 0 /* keep Emacsens' auto-indent happy */