This patch reflects API name changes for odp_barrier.h for ODP v1.0.

Signed-off-by: Bill Fischofer <[email protected]>
---
 platform/linux-generic/include/api/odp_barrier.h | 4 ++--
 platform/linux-generic/odp_barrier.c             | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/platform/linux-generic/include/api/odp_barrier.h 
b/platform/linux-generic/include/api/odp_barrier.h
index fb02a9d..1790ea3 100644
--- a/platform/linux-generic/include/api/odp_barrier.h
+++ b/platform/linux-generic/include/api/odp_barrier.h
@@ -42,7 +42,7 @@ typedef struct odp_barrier_t {
  * @param barrier    Barrier
  * @param count      Thread count
  */
-void odp_barrier_init_count(odp_barrier_t *barrier, int count);
+void odp_barrier_init(odp_barrier_t *barrier, int count);
 
 
 /**
@@ -50,7 +50,7 @@ void odp_barrier_init_count(odp_barrier_t *barrier, int 
count);
  *
  * @param barrier    Barrier
  */
-void odp_barrier_sync(odp_barrier_t *barrier);
+void odp_barrier_wait(odp_barrier_t *barrier);
 
 /**
  * @}
diff --git a/platform/linux-generic/odp_barrier.c 
b/platform/linux-generic/odp_barrier.c
index f4a87c8..87be2a1 100644
--- a/platform/linux-generic/odp_barrier.c
+++ b/platform/linux-generic/odp_barrier.c
@@ -8,7 +8,7 @@
 #include <odp_sync.h>
 #include <odp_spin_internal.h>
 
-void odp_barrier_init_count(odp_barrier_t *barrier, int count)
+void odp_barrier_init(odp_barrier_t *barrier, int count)
 {
        barrier->count = count;
        barrier->bar   = 0;
@@ -28,7 +28,7 @@ void odp_barrier_init_count(odp_barrier_t *barrier, int count)
  *   barrier crosses to the other half of the cycle.
  */
 
-void odp_barrier_sync(odp_barrier_t *barrier)
+void odp_barrier_wait(odp_barrier_t *barrier)
 {
        uint32_t count;
        int wasless;
-- 
1.8.3.2


_______________________________________________
lng-odp mailing list
[email protected]
http://lists.linaro.org/mailman/listinfo/lng-odp

Reply via email to