aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs_api.h')
-rw-r--r--src/fs/fs_api.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/fs/fs_api.h b/src/fs/fs_api.h
index 157662a65..5fbdef6c2 100644
--- a/src/fs/fs_api.h
+++ b/src/fs/fs_api.h
@@ -601,7 +601,7 @@ struct GNUNET_FS_SearchResult
601 * complete on time (and that will need to be cancelled if we clean 601 * complete on time (and that will need to be cancelled if we clean
602 * up the search result before then). 602 * up the search result before then).
603 */ 603 */
604 GNUNET_SCHEDULER_TaskIdentifier probe_cancel_task; 604 struct GNUNET_SCHEDULER_Task * probe_cancel_task;
605 605
606 /** 606 /**
607 * When did the current probe become active? 607 * When did the current probe become active?
@@ -1170,13 +1170,13 @@ struct GNUNET_FS_Handle
1170 * Task that processes the jobs in the running and pending queues 1170 * Task that processes the jobs in the running and pending queues
1171 * (and moves jobs around as needed). 1171 * (and moves jobs around as needed).
1172 */ 1172 */
1173 GNUNET_SCHEDULER_TaskIdentifier queue_job; 1173 struct GNUNET_SCHEDULER_Task * queue_job;
1174 1174
1175 /** 1175 /**
1176 * Task we use to report periodically to the application that 1176 * Task we use to report periodically to the application that
1177 * certain search probes (from @e probes_head) are still running. 1177 * certain search probes (from @e probes_head) are still running.
1178 */ 1178 */
1179 GNUNET_SCHEDULER_TaskIdentifier probe_ping_task; 1179 struct GNUNET_SCHEDULER_Task * probe_ping_task;
1180 1180
1181 /** 1181 /**
1182 * Average time we take for a single request to be satisfied. 1182 * Average time we take for a single request to be satisfied.
@@ -1300,7 +1300,7 @@ struct GNUNET_FS_PublishContext
1300 * ID of the task performing the upload. NO_TASK if the upload has 1300 * ID of the task performing the upload. NO_TASK if the upload has
1301 * completed. 1301 * completed.
1302 */ 1302 */
1303 GNUNET_SCHEDULER_TaskIdentifier upload_task; 1303 struct GNUNET_SCHEDULER_Task * upload_task;
1304 1304
1305 /** 1305 /**
1306 * Storage space to reserve for the operation. 1306 * Storage space to reserve for the operation.
@@ -1629,10 +1629,10 @@ struct GNUNET_FS_SearchContext
1629 /** 1629 /**
1630 * ID of a task that is using this struct and that must be cancelled 1630 * ID of a task that is using this struct and that must be cancelled
1631 * when the search is being stopped (if not 1631 * when the search is being stopped (if not
1632 * #GNUNET_SCHEDULER_NO_TASK). Used for the task that adds some 1632 * #NULL). Used for the task that adds some
1633 * artificial delay when trying to reconnect to the FS service. 1633 * artificial delay when trying to reconnect to the FS service.
1634 */ 1634 */
1635 GNUNET_SCHEDULER_TaskIdentifier task; 1635 struct GNUNET_SCHEDULER_Task * task;
1636 1636
1637 /** 1637 /**
1638 * How many of the entries in the search request 1638 * How many of the entries in the search request
@@ -1961,12 +1961,12 @@ struct GNUNET_FS_DownloadContext
1961 /** 1961 /**
1962 * ID of a task that is using this struct and that must be cancelled 1962 * ID of a task that is using this struct and that must be cancelled
1963 * when the download is being stopped (if not 1963 * when the download is being stopped (if not
1964 * #GNUNET_SCHEDULER_NO_TASK). Used for the task that adds some 1964 * #NULL). Used for the task that adds some
1965 * artificial delay when trying to reconnect to the FS service or 1965 * artificial delay when trying to reconnect to the FS service or
1966 * the task processing incrementally the data on disk, or the 1966 * the task processing incrementally the data on disk, or the
1967 * task requesting blocks, etc. 1967 * task requesting blocks, etc.
1968 */ 1968 */
1969 GNUNET_SCHEDULER_TaskIdentifier task; 1969 struct GNUNET_SCHEDULER_Task * task;
1970 1970
1971 /** 1971 /**
1972 * What is the first offset that we're interested 1972 * What is the first offset that we're interested