X-Git-Url: https://pd.if.org/git/?p=nbds;a=blobdiff_plain;f=test%2Fmap_test1.c;h=f05fa3dea001871492aeb8e75ba166c221c11037;hp=2e9ef859928609a807f6e0b1b039b78d038a518d;hb=778b8c8ca708b082a1192acfb114a6751b2ad7c9;hpb=a03cf3b0c40e6c3b8b4877b49a64288cb3fcb919 diff --git a/test/map_test1.c b/test/map_test1.c index 2e9ef85..f05fa3d 100644 --- a/test/map_test1.c +++ b/test/map_test1.c @@ -23,7 +23,7 @@ static map_t *map_; void *worker (void *arg) { // Wait for all the worker threads to be ready. - SYNC_ADD(&wait_, -1); + (void)SYNC_ADD(&wait_, -1); do {} while (wait_); #ifdef TEST_STRING_KEYS @@ -56,7 +56,7 @@ void *worker (void *arg) { } int main (int argc, char **argv) { - lwt_set_trace_level("r0m0l3"); + lwt_set_trace_level("r0m3s3"); char* program_name = argv[0]; pthread_t thread[MAX_NUM_THREADS]; @@ -85,7 +85,7 @@ int main (int argc, char **argv) { } } - static const map_impl_t *map_types[] = { &ll_map_impl, &sl_map_impl, &ht_map_impl }; + static const map_impl_t *map_types[] = { &MAP_IMPL_LL, &MAP_IMPL_SL, &MAP_IMPL_HT }; for (int i = 0; i < sizeof(map_types)/sizeof(*map_types); ++i) { #ifdef TEST_STRING_KEYS map_ = map_alloc(map_types[i], &DATATYPE_NSTRING);