Home
last modified time | relevance | path

Searched refs:ctrs_b (Results 1 – 1 of 1) sorted by relevance

/xnu-12377.61.12/tests/cpu_counters/
H A Dkpc_tests.c356 uint64_t *ctrs_b; variable
388 ctrs_b = malloc(ctrs_cnt * sizeof(uint64_t));
389 T_QUIET; T_ASSERT_NOTNULL(ctrs_b, NULL);
391 err = kpc_get_thread_counters(0, ctrs_cnt, ctrs_b);
396 " > previous value %" PRIu64, i, ctrs_b[i], ctrs_a[i]);
398 T_EXPECT_GT(ctrs_b[i], UINT64_C(0), "counter %d is non-zero", i);
399 T_QUIET; T_EXPECT_LT(ctrs_a[i], ctrs_b[i],
404 free(ctrs_b);