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 | /* * Copyright (c) 2017 Apple 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@ */ #ifndef _KERN_WORK_INTERVAL_H_ #define _KERN_WORK_INTERVAL_H_ #include <sys/cdefs.h> #include <stdint.h> #include <kern/kern_types.h> #include <kern/thread_group.h> __BEGIN_DECLS struct work_interval; struct kern_work_interval_args { uint64_t work_interval_id; uint64_t start; uint64_t finish; uint64_t deadline; uint64_t next_start; uint32_t notify_flags; uint32_t create_flags; uint16_t urgency; }; struct kern_work_interval_create_args { uint64_t wica_id; /* out param */ mach_port_name_t wica_port; /* out param */ uint32_t wica_create_flags; }; struct kern_work_interval_workload_id_args { uint32_t wlida_flags; /* in/out param */ uint32_t wlida_wicreate_flags; /* in/out param */ char * wlida_name; /* in param */ uint64_t wlida_syscall_mask[2]; /* out param */ }; /* * Allocate/assign a single work interval ID for a thread, * and support deallocating it. */ extern kern_return_t kern_work_interval_create(thread_t thread, struct kern_work_interval_create_args *create_params); extern kern_return_t kern_work_interval_get_flags_from_port(mach_port_name_t port_name, uint32_t*flags); /* * A private interface for kevent subsystem. * Returns a +1 ref to the work_interval associated with a given port. */ extern kern_return_t kern_port_name_to_work_interval(mach_port_name_t name, struct work_interval **work_interval); /* * A private interface for kevent subsystem. * Returns following scheduling policies associated with a work interval, * if available. * : Priority * : Scheduling policy/mode */ extern kern_return_t kern_work_interval_get_policy(struct work_interval *work_interval, integer_t *policy, integer_t *priority); #if CONFIG_THREAD_GROUPS /* * A private interface for kevent subsystem. * Returns a +1 ref on the backing thread group associated with a work interval, * if available. */ extern kern_return_t kern_work_interval_get_thread_group(struct work_interval *work_interval, struct thread_group **tg); #endif /* CONFIG_THREAD_GROUPS */ /* * A private interface for kevent subsystem. * Routine to release a ref count on the work interval. * For more information, see work_interval_release. */ extern void kern_work_interval_release(struct work_interval *work_interval); /* * A private interface for workqueue subsystem. * Routine to join a work interval specified in @work_interval argument. * It takes +1 ref on the work interval and passes it to the thread as a part of * join the work interval. Expects @thread to be the calling thread. */ extern kern_return_t kern_work_interval_explicit_join(thread_t thread, struct work_interval *work_interval); extern kern_return_t kern_work_interval_destroy(thread_t thread, uint64_t work_interval_id); extern kern_return_t kern_work_interval_join(thread_t thread, mach_port_name_t port_name); extern kern_return_t kern_work_interval_notify(thread_t thread, struct kern_work_interval_args* kwi_args); extern kern_return_t kern_work_interval_set_name(mach_port_name_t port_name, char *name, size_t len); extern kern_return_t kern_work_interval_set_workload_id(mach_port_name_t port_name, struct kern_work_interval_workload_id_args *workload_id_args); #ifdef MACH_KERNEL_PRIVATE bool work_interval_port_type_render_server(mach_port_name_t port_name); #if CONFIG_SCHED_AUTO_JOIN bool work_interval_should_propagate(thread_t cthread, thread_t thread); void work_interval_auto_join_propagate(thread_t from, thread_t to); void work_interval_auto_join_unwind(thread_t thread); void work_interval_auto_join_demote(thread_t thread); #endif /* CONFIG_SCHED_AUTO_JOIN */ struct recount_track *work_interval_get_recount_tracks(struct work_interval *work_interval); extern kern_return_t work_interval_thread_terminate(thread_t thread); extern int work_interval_get_priority(thread_t thread); #endif /* MACH_KERNEL_PRIVATE */ #ifdef KERNEL_PRIVATE __enum_closed_decl(wi_class_t, uint8_t, { WI_CLASS_NONE = 0, WI_CLASS_DISCRETIONARY = 1, WI_CLASS_BEST_EFFORT = 2, WI_CLASS_APPLICATION = 3, WI_CLASS_SYSTEM = 4, WI_CLASS_SYSTEM_CRITICAL = 5, WI_CLASS_REALTIME = 6, WI_CLASS_REALTIME_CRITICAL = 7, WI_CLASS_APP_SUPPORT = 8, WI_CLASS_COUNT }); #endif __END_DECLS #endif /* !defined(_KERN_WORK_INTERVAL_H_) */ |