|
|
|
@ -110,8 +110,10 @@ thread(void *unused CK_CC_UNUSED)
|
|
|
|
|
ck_pr_inc_uint(&e_barrier);
|
|
|
|
|
while (ck_pr_load_uint(&e_barrier) < n_threads);
|
|
|
|
|
|
|
|
|
|
fprintf(stderr, "Peak: %u\nReclamations: %" PRIu64 "\n\n",
|
|
|
|
|
record.n_peak, record.n_reclamations);
|
|
|
|
|
fprintf(stderr, "Peak: %u (%2.2f%%)\nReclamations: %" PRIu64 "\n\n",
|
|
|
|
|
record.n_peak,
|
|
|
|
|
(double)record.n_peak / PAIRS * 100,
|
|
|
|
|
record.n_reclamations);
|
|
|
|
|
|
|
|
|
|
ck_epoch_purge(&record);
|
|
|
|
|
|
|
|
|
|