X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Ftest_rwlock.c;h=ad1c7bc4f332190de478be5ad87ed0c4bd9e247c;hb=00fdf53c7076d1bd0045439e73f0144d613eb09c;hp=8b6f927d63ed02cc1160b688f71a3c4399086efd;hpb=25ab6cfed6db18bdd8cdb57b7e751751aa64c576;p=vpp.git diff --git a/src/vppinfra/test_rwlock.c b/src/vppinfra/test_rwlock.c index 8b6f927d63e..ad1c7bc4f33 100644 --- a/src/vppinfra/test_rwlock.c +++ b/src/vppinfra/test_rwlock.c @@ -110,12 +110,12 @@ test_rwlock (rwlock_test_main_t * rtm, f64 * elapse_time) for (uword t_num = 0; t_num < rtm->threads_per_core; t_num++) { uword t_index = cores_set * rtm->threads_per_core + t_num; - if (error = pthread_create (&pthread[t_index], NULL, - &read_shared_counter, rtm)) + if ((error = pthread_create (&pthread[t_index], NULL, + &read_shared_counter, rtm))) clib_unix_warning ("pthread_create failed with %d", error); - if (error = pthread_setaffinity_np (pthread[t_index], - sizeof (cpu_set_t), &cpuset)) + if ((error = pthread_setaffinity_np (pthread[t_index], + sizeof (cpu_set_t), &cpuset))) clib_unix_warning ("pthread_set_affinity_np failed with %d", error); } @@ -138,12 +138,12 @@ test_rwlock (rwlock_test_main_t * rtm, f64 * elapse_time) for (uword t_num = 0; t_num < rtm->threads_per_core; t_num++) { uword t_index = cores_set * rtm->threads_per_core + t_num; - if (error = pthread_create (&pthread[t_index], NULL, - &write_shared_counter, rtm)) + if ((error = pthread_create (&pthread[t_index], NULL, + &write_shared_counter, rtm))) clib_unix_warning ("pthread_create failed with %d", error); - if (error = pthread_setaffinity_np (pthread[t_index], - sizeof (cpu_set_t), &cpuset)) + if ((error = pthread_setaffinity_np (pthread[t_index], + sizeof (cpu_set_t), &cpuset))) clib_unix_warning ("pthread_set_affinity_np failed with %d", error); } @@ -157,7 +157,7 @@ test_rwlock (rwlock_test_main_t * rtm, f64 * elapse_time) for (uword thread_num = 0; thread_num < total_threads; thread_num++) { f64 *time; - if (error = pthread_join (pthread[thread_num], (void *) &time)) + if ((error = pthread_join (pthread[thread_num], (void *) &time))) clib_unix_warning ("pthread_join failed with %d", error); *elapse_time += *time; vec_free (time);