aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/api
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2015-01-12 15:46:07 -0500
committerMaxim Uvarov <maxim.uvarov@linaro.org>2015-01-14 17:43:44 +0300
commit1f1190a5b705d9c11d376dcde897d9691b2465d9 (patch)
tree1bf9da668387c2ccd26b8be142f4cc5dc0a07525 /platform/linux-generic/include/api
parentaa1be533ce761e118b719053b5237e58fc19ef04 (diff)
api: schedule: remove odp_schedule_one
For the initial realease this api has been removed from the specification. Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Reviewed-by: Petri Savolainen <petri.savolainen@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform/linux-generic/include/api')
-rw-r--r--platform/linux-generic/include/api/odp_schedule.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/platform/linux-generic/include/api/odp_schedule.h b/platform/linux-generic/include/api/odp_schedule.h
index 91fec1056..cdf670538 100644
--- a/platform/linux-generic/include/api/odp_schedule.h
+++ b/platform/linux-generic/include/api/odp_schedule.h
@@ -64,31 +64,6 @@ uint64_t odp_schedule_wait_time(uint64_t ns);
odp_buffer_t odp_schedule(odp_queue_t *from, uint64_t wait);
/**
- * Schedule one buffer
- *
- * Like odp_schedule(), but is quaranteed to schedule only one buffer at a time.
- * Each call will perform global scheduling and will reserve one buffer per
- * thread in maximum. When called after other schedule functions, returns
- * locally stored buffers (if any) first, and then continues in the global
- * scheduling mode.
- *
- * This function optimises priority scheduling (over throughput).
- *
- * User can exit the schedule loop without first calling odp_schedule_pause().
- *
- * @param from Output parameter for the source queue (where the buffer was
- * dequeued from). Ignored if NULL.
- * @param wait Minimum time to wait for a buffer. Waits infinitely, if set to
- * ODP_SCHED_WAIT. Does not wait, if set to ODP_SCHED_NO_WAIT.
- * Use odp_schedule_wait_time() to convert time to other wait
- * values.
- *
- * @return Next highest priority buffer, or ODP_BUFFER_INVALID
- */
-odp_buffer_t odp_schedule_one(odp_queue_t *from, uint64_t wait);
-
-
-/**
* Schedule multiple buffers
*
* Like odp_schedule(), but returns multiple buffers from a queue.