aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-dpdk/odp_schedule_if.c
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2021-11-24 09:23:14 +0200
committerGitHub <noreply@github.com>2021-11-24 09:23:14 +0200
commit450eed7b050496cc6dd981fe20f38915063f8a7c (patch)
treed46c0c4439dab28ad6f353c2ad3bc3d166f28ce1 /platform/linux-dpdk/odp_schedule_if.c
parentf5e9dc2da1202c6afc09559e74a63eb4126e7eef (diff)
parenta323b89bd7296b7774d51774a7426d432735d061 (diff)
Merge ODP v1.32.1.0v1.32.1.0_DPDK_19.11
Merge ODP linux-generic v1.32.1.0 into linux-dpdk
Diffstat (limited to 'platform/linux-dpdk/odp_schedule_if.c')
-rw-r--r--platform/linux-dpdk/odp_schedule_if.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/platform/linux-dpdk/odp_schedule_if.c b/platform/linux-dpdk/odp_schedule_if.c
index 21f5fc85b..73475ae88 100644
--- a/platform/linux-dpdk/odp_schedule_if.c
+++ b/platform/linux-dpdk/odp_schedule_if.c
@@ -98,27 +98,27 @@ int odp_schedule_multi_no_wait(odp_queue_t *from, odp_event_t events[], int num)
void odp_schedule_pause(void)
{
- return _odp_sched_api->schedule_pause();
+ _odp_sched_api->schedule_pause();
}
void odp_schedule_resume(void)
{
- return _odp_sched_api->schedule_resume();
+ _odp_sched_api->schedule_resume();
}
void odp_schedule_release_atomic(void)
{
- return _odp_sched_api->schedule_release_atomic();
+ _odp_sched_api->schedule_release_atomic();
}
void odp_schedule_release_ordered(void)
{
- return _odp_sched_api->schedule_release_ordered();
+ _odp_sched_api->schedule_release_ordered();
}
void odp_schedule_prefetch(int num)
{
- return _odp_sched_api->schedule_prefetch(num);
+ _odp_sched_api->schedule_prefetch(num);
}
int odp_schedule_min_prio(void)
@@ -183,12 +183,12 @@ int odp_schedule_group_info(odp_schedule_group_t group,
void odp_schedule_order_lock(uint32_t lock_index)
{
- return _odp_sched_api->schedule_order_lock(lock_index);
+ _odp_sched_api->schedule_order_lock(lock_index);
}
void odp_schedule_order_unlock(uint32_t lock_index)
{
- return _odp_sched_api->schedule_order_unlock(lock_index);
+ _odp_sched_api->schedule_order_unlock(lock_index);
}
void odp_schedule_order_unlock_lock(uint32_t unlock_index, uint32_t lock_index)