From 77d226f1f3bb0e962a5f1ae9c529d7a9dd13e2e8 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Thu, 27 Jan 2005 19:37:39 +0000 Subject: [PATCH] Remove priorities from interfaces. (Logical change 1.121) git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@428 fd59a12c-fef9-0310-b244-a6a79926bd2f --- test/evsbench.c | 2 +- test/testevs.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/evsbench.c b/test/evsbench.c index d249040b..0acbf9fe 100644 --- a/test/evsbench.c +++ b/test/evsbench.c @@ -118,7 +118,7 @@ void evs_benchmark (evs_handle_t handle, do { sprintf (buffer, "This is message %d\n", write_count); try_again: - result = evs_mcast_joined (&handle, EVS_TYPE_AGREED, EVS_PRIO_LOW, &iov, 1); + result = evs_mcast_joined (&handle, EVS_TYPE_AGREED, &iov, 1); if (result == EVS_ERR_TRY_AGAIN) { goto try_again; } else { diff --git a/test/testevs.c b/test/testevs.c index ee235511..c228b63d 100644 --- a/test/testevs.c +++ b/test/testevs.c @@ -122,7 +122,7 @@ int main (void) i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i); #endif try_again_one: - result = evs_mcast_joined (&handle, EVS_TYPE_AGREED, EVS_PRIO_LOW, + result = evs_mcast_joined (&handle, EVS_TYPE_AGREED, &iov, 1); if (result == EVS_ERR_TRY_AGAIN) { goto try_again_one; @@ -140,7 +140,7 @@ try_again_one: for (i = 0; i < 500; i++) { sprintf (buffer, "evs_mcast_groups: This is message %d", i); try_again_two: - result = evs_mcast_groups (&handle, EVS_TYPE_AGREED, EVS_PRIO_LOW, + result = evs_mcast_groups (&handle, EVS_TYPE_AGREED, &groups[1], 1, &iov, 1); if (result == EVS_ERR_TRY_AGAIN) { goto try_again_two;