Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 | /* * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include <mach/mach_types.h> #include <mach/task_server.h> #include <kern/sched.h> #include <kern/task.h> static void task_priority( task_t task, integer_t priority, integer_t max_priority); kern_return_t task_policy_set( task_t task, task_policy_flavor_t flavor, task_policy_t policy_info, mach_msg_type_number_t count) { kern_return_t result = KERN_SUCCESS; if (task == TASK_NULL || task == kernel_task) return (KERN_INVALID_ARGUMENT); switch (flavor) { case TASK_CATEGORY_POLICY: { task_category_policy_t info = (task_category_policy_t)policy_info; if (count < TASK_CATEGORY_POLICY_COUNT) return (KERN_INVALID_ARGUMENT); task_lock(task); if ( info->role == TASK_FOREGROUND_APPLICATION || info->role == TASK_BACKGROUND_APPLICATION ) { switch (task->role) { case TASK_FOREGROUND_APPLICATION: case TASK_BACKGROUND_APPLICATION: case TASK_UNSPECIFIED: task_priority(task, ((info->role == TASK_FOREGROUND_APPLICATION)? BASEPRI_FOREGROUND: BASEPRI_BACKGROUND), task->max_priority); task->role = info->role; break; case TASK_CONTROL_APPLICATION: case TASK_RENICED: /* fail silently */ break; default: result = KERN_INVALID_ARGUMENT; break; } } else if (info->role == TASK_CONTROL_APPLICATION) { if ( task != current_task() || task->sec_token.val[0] != 0 ) result = KERN_INVALID_ARGUMENT; else { task_priority(task, BASEPRI_CONTROL, task->max_priority); task->role = info->role; } } else if (info->role == TASK_GRAPHICS_SERVER) { if ( task != current_task() || task->sec_token.val[0] != 0 ) result = KERN_INVALID_ARGUMENT; else { task_priority(task, MAXPRI_RESERVED - 3, MAXPRI_RESERVED); task->role = info->role; } } else result = KERN_INVALID_ARGUMENT; task_unlock(task); break; } default: result = KERN_INVALID_ARGUMENT; break; } return (result); } static void task_priority( task_t task, integer_t priority, integer_t max_priority) { thread_t thread; task->max_priority = max_priority; if (priority > task->max_priority) priority = task->max_priority; else if (priority < MINPRI) priority = MINPRI; task->priority = priority; queue_iterate(&task->threads, thread, thread_t, task_threads) { thread_mtx_lock(thread); if (thread->active) thread_task_priority(thread, priority, max_priority); thread_mtx_unlock(thread); } } kern_return_t task_importance( task_t task, integer_t importance) { if (task == TASK_NULL || task == kernel_task) return (KERN_INVALID_ARGUMENT); task_lock(task); if (!task->active) { task_unlock(task); return (KERN_TERMINATED); } if (task->role >= TASK_CONTROL_APPLICATION) { task_unlock(task); return (KERN_INVALID_ARGUMENT); } task_priority(task, importance + BASEPRI_DEFAULT, task->max_priority); task->role = TASK_RENICED; task_unlock(task); return (KERN_SUCCESS); } kern_return_t task_policy_get( task_t task, task_policy_flavor_t flavor, task_policy_t policy_info, mach_msg_type_number_t *count, boolean_t *get_default) { if (task == TASK_NULL || task == kernel_task) return (KERN_INVALID_ARGUMENT); switch (flavor) { case TASK_CATEGORY_POLICY: { task_category_policy_t info = (task_category_policy_t)policy_info; if (*count < TASK_CATEGORY_POLICY_COUNT) return (KERN_INVALID_ARGUMENT); if (*get_default) info->role = TASK_UNSPECIFIED; else { task_lock(task); info->role = task->role; task_unlock(task); } break; } default: return (KERN_INVALID_ARGUMENT); } return (KERN_SUCCESS); } |