aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include/odp/plat/schedule_types.h
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@nokia.com>2016-01-28 15:24:36 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2016-02-08 20:45:25 +0300
commit474d0e163c902aac32f4908d6da5c13764f412fa (patch)
treea9a7c865e8528b68e33a5bb710078d99353d6c24 /platform/linux-generic/include/odp/plat/schedule_types.h
parentd937899d498e196c1b77b4d909bb40d360806202 (diff)
api: sched: rename SCHED_SYNC_NONE to _PARALLEL
In practice, this type of queues are referred as "parallel queues" instead of "none queues". Also "none" type is quite pessimistic term, since scheduler may perform lots of HW offload also in this mode. Signed-off-by: Petri Savolainen <petri.savolainen@nokia.com> Reviewed-and-tested-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform/linux-generic/include/odp/plat/schedule_types.h')
-rw-r--r--platform/linux-generic/include/odp/plat/schedule_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linux-generic/include/odp/plat/schedule_types.h b/platform/linux-generic/include/odp/plat/schedule_types.h
index 21fcbb84c..a4a352c04 100644
--- a/platform/linux-generic/include/odp/plat/schedule_types.h
+++ b/platform/linux-generic/include/odp/plat/schedule_types.h
@@ -37,7 +37,7 @@ typedef int odp_schedule_prio_t;
typedef int odp_schedule_sync_t;
-#define ODP_SCHED_SYNC_NONE 0
+#define ODP_SCHED_SYNC_PARALLEL 0
#define ODP_SCHED_SYNC_ATOMIC 1
#define ODP_SCHED_SYNC_ORDERED 2