From d5c05309b49402561b2fa383550a1283900c93a3 Mon Sep 17 00:00:00 2001 From: Brendon Scheinman Date: Tue, 19 Feb 2013 21:50:53 -0600 Subject: [PATCH] cleanup: ck_cohort validation test Removed unnecessary includes and fixed shadowed variable warning. --- regressions/ck_cohort/validate/validate.c | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/regressions/ck_cohort/validate/validate.c b/regressions/ck_cohort/validate/validate.c index cd1608e..5cffc65 100644 --- a/regressions/ck_cohort/validate/validate.c +++ b/regressions/ck_cohort/validate/validate.c @@ -26,15 +26,9 @@ */ #include -#include #include -#include -#include #include #include -#include -#include -#include #include #include @@ -49,7 +43,7 @@ static struct affinity a; static unsigned int locked; static int nthr; -static ck_spinlock_fas_t global_lock = CK_SPINLOCK_FAS_INITIALIZER; +static ck_spinlock_fas_t global_fas_lock = CK_SPINLOCK_FAS_INITIALIZER; typedef ck_spinlock_fas_t ck_spinlock_fas; CK_CREATE_COHORT(fas_fas, ck_spinlock_fas, ck_spinlock_fas) static struct ck_cohort_fas_fas *cohorts; @@ -63,12 +57,12 @@ thread(void *null CK_CC_UNUSED) unsigned int core; struct ck_cohort_fas_fas *cohort; - if (aff_iterate_core(&a, &core)) { - perror("ERROR: Could not affine thread"); - exit(EXIT_FAILURE); - } + if (aff_iterate_core(&a, &core)) { + perror("ERROR: Could not affine thread"); + exit(EXIT_FAILURE); + } - cohort = cohorts + core % n_cohorts; + cohort = cohorts + core % n_cohorts; while (i--) { ck_cohort_fas_fas_lock(cohort); @@ -147,7 +141,7 @@ main(int argc, char *argv[]) cohorts = malloc(sizeof(struct ck_cohort_fas_fas) * n_cohorts); for (i = 0 ; i < n_cohorts ; i++) { local_lock = malloc(sizeof(ck_spinlock_fas_t)); - ck_cohort_fas_fas_init(cohorts + i, &global_lock, local_lock); + ck_cohort_fas_fas_init(cohorts + i, &global_fas_lock, local_lock); } fprintf(stderr, "done\n");