Home
last modified time | relevance | path

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

/xnu-12377.1.9/tests/sched/
H A Denabled_policy.c45 char *policy_name = platform_sched_policy(); variable
68 T_ASSERT_EQ_STR(policy_name, "clutch", "SMP platform should be running the Clutch scheduler");
73 …T_ASSERT_EQ_STR(policy_name, "edge", "Non-exempt AMP platform should be running the Edge scheduler…
H A Dcluster_bound_threads.c222 char *policy_name = platform_sched_policy(); variable
223 if (strcmp(policy_name, "edge") != 0) {
224 …Platform is running the \"%s\" scheduler, which lacks strong enough cluster-binding", policy_name);
/xnu-12377.1.9/tests/recount/
H A Drecount_test_utils.c163 static char policy_name[64] = { 0 }; in sched_policy_name() local
168 T_ASSERT_POSIX_SUCCESS(sysctlbyname("kern.sched", &policy_name, in sched_policy_name()
169 &(size_t){ sizeof(policy_name) }, NULL, 0), "kern.sched"); in sched_policy_name()
172 return policy_name; in sched_policy_name()
/xnu-12377.1.9/tests/sched/sched_test_harness/
H A Dsched_policy_darwintest.h38 #define SCHED_POLICY_TEST_NAME(policy_name, test_name) PASTER(policy_name, test_name) argument