xref: /xnu-10002.1.13/tests/thread_policy.c (revision 1031c584a5e37aff177559b9f69dbd3c8c3fd30a)
1*1031c584SApple OSS Distributions #include <darwintest.h>
2*1031c584SApple OSS Distributions #include <mach/thread_policy_private.h>
3*1031c584SApple OSS Distributions #include <mach/mach.h>
4*1031c584SApple OSS Distributions #include <dispatch/dispatch.h>
5*1031c584SApple OSS Distributions #include <sys/qos_private.h>
6*1031c584SApple OSS Distributions 
7*1031c584SApple OSS Distributions static qos_class_t
thread_qos_to_qos_class(uint32_t thread_qos)8*1031c584SApple OSS Distributions thread_qos_to_qos_class(uint32_t thread_qos)
9*1031c584SApple OSS Distributions {
10*1031c584SApple OSS Distributions 	switch (thread_qos) {
11*1031c584SApple OSS Distributions 	case THREAD_QOS_MAINTENANCE:
12*1031c584SApple OSS Distributions 		return QOS_CLASS_MAINTENANCE;
13*1031c584SApple OSS Distributions 	case THREAD_QOS_BACKGROUND:
14*1031c584SApple OSS Distributions 		return QOS_CLASS_BACKGROUND;
15*1031c584SApple OSS Distributions 	case THREAD_QOS_UTILITY:
16*1031c584SApple OSS Distributions 		return QOS_CLASS_UTILITY;
17*1031c584SApple OSS Distributions 	case THREAD_QOS_LEGACY:
18*1031c584SApple OSS Distributions 		return QOS_CLASS_DEFAULT;
19*1031c584SApple OSS Distributions 	case THREAD_QOS_USER_INITIATED:
20*1031c584SApple OSS Distributions 		return QOS_CLASS_USER_INITIATED;
21*1031c584SApple OSS Distributions 	case THREAD_QOS_USER_INTERACTIVE:
22*1031c584SApple OSS Distributions 		return QOS_CLASS_USER_INTERACTIVE;
23*1031c584SApple OSS Distributions 	default:
24*1031c584SApple OSS Distributions 		return QOS_CLASS_UNSPECIFIED;
25*1031c584SApple OSS Distributions 	}
26*1031c584SApple OSS Distributions }
27*1031c584SApple OSS Distributions 
28*1031c584SApple OSS Distributions static qos_class_t
get_thread_requested_qos(void)29*1031c584SApple OSS Distributions get_thread_requested_qos(void)
30*1031c584SApple OSS Distributions {
31*1031c584SApple OSS Distributions 	mach_msg_type_number_t count = THREAD_REQUESTED_STATE_POLICY_COUNT;
32*1031c584SApple OSS Distributions 	struct thread_requested_qos_policy requested_policy;
33*1031c584SApple OSS Distributions 	boolean_t get_default = FALSE;
34*1031c584SApple OSS Distributions 	mach_port_t thread_port = pthread_mach_thread_np(pthread_self());
35*1031c584SApple OSS Distributions 
36*1031c584SApple OSS Distributions 	kern_return_t kr = thread_policy_get(thread_port, THREAD_REQUESTED_STATE_POLICY,
37*1031c584SApple OSS Distributions 	    (thread_policy_t)&requested_policy, &count, &get_default);
38*1031c584SApple OSS Distributions 	T_QUIET; T_ASSERT_MACH_SUCCESS(kr, "thread_policy_get");
39*1031c584SApple OSS Distributions 
40*1031c584SApple OSS Distributions 	return thread_qos_to_qos_class(requested_policy.thrq_base_qos);
41*1031c584SApple OSS Distributions }
42*1031c584SApple OSS Distributions 
43*1031c584SApple OSS Distributions T_DECL(thread_policy_requested_state, "THREAD_REQUESTED_STATE_POLICY", T_META_ASROOT(NO))
44*1031c584SApple OSS Distributions {
45*1031c584SApple OSS Distributions 	qos_class_t main_thread_qos = get_thread_requested_qos();
46*1031c584SApple OSS Distributions 	T_ASSERT_EQ(main_thread_qos, qos_class_main(), "main thead requested qos matches");
47*1031c584SApple OSS Distributions }
48