1 | /* $Id: tstDarwinSched.cpp 62477 2016-07-22 18:27:37Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT testcase - darwin scheduling.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009-2016 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include <mach/thread_act.h>
|
---|
32 | #include <mach/thread_policy.h>
|
---|
33 | #include <mach/thread_info.h>
|
---|
34 | #include <mach/host_info.h>
|
---|
35 | #include <mach/mach_init.h>
|
---|
36 | #include <mach/mach_host.h>
|
---|
37 | #include <pthread.h>
|
---|
38 | #include <sched.h>
|
---|
39 | #include <stdio.h>
|
---|
40 | #include <stdlib.h>
|
---|
41 | #include <string.h>
|
---|
42 |
|
---|
43 |
|
---|
44 | static void thread_print_policies(int fDefault)
|
---|
45 | {
|
---|
46 | thread_extended_policy_data_t Extended = { 0 };
|
---|
47 | thread_time_constraint_policy_data_t TimeConstraint = { 0, 0, 0, 1 };
|
---|
48 | thread_precedence_policy_data_t Precedence = { 0 };
|
---|
49 | #ifdef THREAD_AFFINITY_POLICY /* 10.5 */
|
---|
50 | thread_affinity_policy_data_t Affinity = { 0 };
|
---|
51 | #endif
|
---|
52 | boolean_t GetDefault;
|
---|
53 | mach_msg_type_number_t Count;
|
---|
54 | kern_return_t krc;
|
---|
55 |
|
---|
56 | GetDefault = fDefault;
|
---|
57 | Count = THREAD_EXTENDED_POLICY_COUNT;
|
---|
58 | krc = thread_policy_get(mach_thread_self(), THREAD_EXTENDED_POLICY, (thread_policy_t)&Extended, &Count, &GetDefault);
|
---|
59 | printf("THREAD_EXTENDED_POLICY: krc=%#x default=%d timeshare=%d (%#x)\n",
|
---|
60 | krc, GetDefault, Extended.timeshare, Extended.timeshare);
|
---|
61 |
|
---|
62 | GetDefault = fDefault;
|
---|
63 | Count = THREAD_PRECEDENCE_POLICY_COUNT;
|
---|
64 | krc = thread_policy_get(mach_thread_self(), THREAD_PRECEDENCE_POLICY, (thread_policy_t)&Precedence, &Count, &GetDefault);
|
---|
65 | printf("THREAD_PRECEDENCE_POLICY: krc=%#x default=%d importance=%d (%#x)\n",
|
---|
66 | krc, GetDefault, Precedence.importance, Precedence.importance);
|
---|
67 |
|
---|
68 | GetDefault = fDefault;
|
---|
69 | Count = THREAD_TIME_CONSTRAINT_POLICY_COUNT;
|
---|
70 | krc = thread_policy_get(mach_thread_self(), THREAD_TIME_CONSTRAINT_POLICY, (thread_policy_t)&TimeConstraint, &Count, &GetDefault);
|
---|
71 | printf("THREAD_TIME_CONSTRAINT_POLICY: krc=%#x default=%d period=%u (%#x) computation=%u (%#x) constraint=%u (%#x) preemptible=%d\n",
|
---|
72 | krc, GetDefault, TimeConstraint.period, TimeConstraint.period,
|
---|
73 | TimeConstraint.computation, TimeConstraint.computation,
|
---|
74 | TimeConstraint.constraint, TimeConstraint.constraint,
|
---|
75 | TimeConstraint.preemptible);
|
---|
76 |
|
---|
77 | #ifdef THREAD_AFFINITY_POLICY /* 10.5 */
|
---|
78 | GetDefault = fDefault;
|
---|
79 | Count = THREAD_AFFINITY_POLICY_COUNT;
|
---|
80 | krc = thread_policy_get(mach_thread_self(), THREAD_AFFINITY_POLICY, (thread_policy_t)&Affinity, &Count, &GetDefault);
|
---|
81 | printf("THREAD_AFFINITY_POLICY: krc=%#x default=%d affinity_tag=%d (%#x)\n",
|
---|
82 | krc, GetDefault, Affinity.affinity_tag, Affinity.affinity_tag);
|
---|
83 | #endif
|
---|
84 |
|
---|
85 | if (!fDefault)
|
---|
86 | {
|
---|
87 | struct sched_param Param;
|
---|
88 | int iPolicy = 0;
|
---|
89 | struct thread_basic_info BasicInfo = {{0,0},{0,0},0,0,0,0,0,0};
|
---|
90 | struct policy_timeshare_info TSInfo = {0,0,0,0,0};
|
---|
91 | int rc;
|
---|
92 |
|
---|
93 | memset(&Param, 0, sizeof(Param));
|
---|
94 | rc = pthread_getschedparam(pthread_self(), &iPolicy, &Param);
|
---|
95 | printf("pthread_getschedparam: rc=%d iPolicy=%d (%#x) sched_priority=%d (%#x) opaque=%d (%#x)\n",
|
---|
96 | rc, iPolicy, iPolicy, Param.sched_priority, Param.sched_priority,
|
---|
97 | #ifdef THREAD_AFFINITY_POLICY /* 10.5 */
|
---|
98 | *(int *)&Param.__opaque, *(int *)&Param.__opaque);
|
---|
99 | #else
|
---|
100 | *(int *)&Param.opaque, *(int *)&Param.opaque);
|
---|
101 | #endif
|
---|
102 |
|
---|
103 | Count = THREAD_BASIC_INFO_COUNT;
|
---|
104 | krc = thread_info(mach_thread_self(), THREAD_BASIC_INFO, (thread_info_t)&BasicInfo, &Count);
|
---|
105 | printf("THREAD_BASIC_INFO: krc=%#x user_time=%d.%06d system_time=%d.%06d cpu_usage=%d policy=%d\n"
|
---|
106 | " run_state=%d flags=%#x suspend_count=%d sleep_time=%d\n",
|
---|
107 | krc,
|
---|
108 | BasicInfo.user_time.seconds, BasicInfo.user_time.microseconds,
|
---|
109 | BasicInfo.system_time.seconds, BasicInfo.system_time.microseconds,
|
---|
110 | BasicInfo.cpu_usage,
|
---|
111 | BasicInfo.policy,
|
---|
112 | BasicInfo.run_state,
|
---|
113 | BasicInfo.flags,
|
---|
114 | BasicInfo.suspend_count,
|
---|
115 | BasicInfo.sleep_time);
|
---|
116 |
|
---|
117 | Count = POLICY_TIMESHARE_INFO_COUNT;
|
---|
118 | krc = thread_info(mach_thread_self(), THREAD_SCHED_TIMESHARE_INFO, (thread_info_t)&TSInfo, &Count);
|
---|
119 | printf("THREAD_SCHED_TIMESHARE_INFO: krc=%#x max_priority=%d (%#x) base_priority=%d (%#x) cur_priority=%d (%#x)\n"
|
---|
120 | " depressed=%d depress_priority=%d (%#x)\n",
|
---|
121 | krc,
|
---|
122 | TSInfo.max_priority, TSInfo.max_priority,
|
---|
123 | TSInfo.base_priority, TSInfo.base_priority,
|
---|
124 | TSInfo.cur_priority, TSInfo.cur_priority,
|
---|
125 | TSInfo.depressed,
|
---|
126 | TSInfo.depress_priority, TSInfo.depress_priority);
|
---|
127 | }
|
---|
128 | else
|
---|
129 | {
|
---|
130 | host_priority_info_data_t PriorityInfo = {0,0,0,0,0,0,0,0};
|
---|
131 |
|
---|
132 | Count = HOST_PRIORITY_INFO_COUNT;
|
---|
133 | krc = host_info(mach_host_self(), HOST_PRIORITY_INFO, (host_info_t)&PriorityInfo, &Count);
|
---|
134 | printf("HOST_PRIORITY_INFO: krc=%#x \n"
|
---|
135 | " kernel_priority=%2d (%#x)\n"
|
---|
136 | " system_priority=%2d (%#x)\n"
|
---|
137 | " server_priority=%2d (%#x)\n"
|
---|
138 | " user_priority=%2d (%#x)\n"
|
---|
139 | " depress_priority=%2d (%#x)\n"
|
---|
140 | " idle_priority=%2d (%#x)\n"
|
---|
141 | " minimum_priority=%2d (%#x)\n"
|
---|
142 | " maximum_priority=%2d (%#x)\n",
|
---|
143 | krc,
|
---|
144 | PriorityInfo.kernel_priority, PriorityInfo.kernel_priority,
|
---|
145 | PriorityInfo.system_priority, PriorityInfo.system_priority,
|
---|
146 | PriorityInfo.server_priority, PriorityInfo.server_priority,
|
---|
147 | PriorityInfo.user_priority, PriorityInfo.user_priority,
|
---|
148 | PriorityInfo.depress_priority, PriorityInfo.depress_priority,
|
---|
149 | PriorityInfo.idle_priority, PriorityInfo.idle_priority,
|
---|
150 | PriorityInfo.minimum_priority, PriorityInfo.minimum_priority,
|
---|
151 | PriorityInfo.maximum_priority, PriorityInfo.maximum_priority);
|
---|
152 | }
|
---|
153 | }
|
---|
154 |
|
---|
155 | int main()
|
---|
156 | {
|
---|
157 | struct sched_param Param;
|
---|
158 | int iPolicy;
|
---|
159 | int iPriority;
|
---|
160 | int rc;
|
---|
161 |
|
---|
162 | printf("tstDarwinSched: Default policies:\n");
|
---|
163 | thread_print_policies(1);
|
---|
164 |
|
---|
165 | printf("tstDarwinSched: Current policies:\n");
|
---|
166 | thread_print_policies(0);
|
---|
167 |
|
---|
168 |
|
---|
169 | printf("tstDarwinSched:\n");
|
---|
170 | printf("tstDarwinSched: Trying max priority using pthread API\n");
|
---|
171 | iPolicy = SCHED_OTHER;
|
---|
172 | memset(&Param, 0, sizeof(Param));
|
---|
173 | pthread_getschedparam(pthread_self(), &iPolicy, &Param);
|
---|
174 | Param.sched_priority = iPriority = sched_get_priority_max(iPolicy);
|
---|
175 | rc = pthread_setschedparam(pthread_self(), iPolicy, &Param);
|
---|
176 | if (!rc)
|
---|
177 | {
|
---|
178 | do
|
---|
179 | {
|
---|
180 | Param.sched_priority = ++iPriority;
|
---|
181 | rc = pthread_setschedparam(pthread_self(), iPolicy, &Param);
|
---|
182 | } while (!rc);
|
---|
183 | iPriority--;
|
---|
184 | rc = 0;
|
---|
185 | }
|
---|
186 | printf("tstDarwinSched: pthread_setschedparam(iPriority=%d [max=%d]) -> %d\n",
|
---|
187 | iPriority, sched_get_priority_max(iPolicy), rc);
|
---|
188 | thread_print_policies(0);
|
---|
189 |
|
---|
190 |
|
---|
191 | printf("tstDarwinSched:\n");
|
---|
192 | printf("tstDarwinSched: Trying min priority using pthread API\n");
|
---|
193 | iPolicy = SCHED_OTHER;
|
---|
194 | memset(&Param, 0, sizeof(Param));
|
---|
195 | pthread_getschedparam(pthread_self(), &iPolicy, &Param);
|
---|
196 | Param.sched_priority = iPriority = sched_get_priority_min(iPolicy);
|
---|
197 | rc = pthread_setschedparam(pthread_self(), iPolicy, &Param);
|
---|
198 | if (!rc)
|
---|
199 | {
|
---|
200 | do
|
---|
201 | {
|
---|
202 | Param.sched_priority = --iPriority;
|
---|
203 | rc = pthread_setschedparam(pthread_self(), iPolicy, &Param);
|
---|
204 | } while (!rc);
|
---|
205 | iPriority++;
|
---|
206 | rc = 0;
|
---|
207 | }
|
---|
208 | printf("tstDarwinSched: pthread_setschedparam(iPriority=%d [min=%d]) -> %d\n",
|
---|
209 | iPriority, sched_get_priority_min(iPolicy), rc);
|
---|
210 | thread_print_policies(0);
|
---|
211 |
|
---|
212 |
|
---|
213 | return 0;
|
---|
214 | }
|
---|
215 |
|
---|