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 | /* * Copyright (c) 2000-2004 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This 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 OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ /* */ /* * kern/ast.h: Definitions for Asynchronous System Traps. */ #ifndef _KERN_AST_H_ #define _KERN_AST_H_ #include <platforms.h> #include <kern/assert.h> #include <kern/macro_help.h> #include <kern/lock.h> #include <kern/spl.h> #include <machine/ast.h> /* * A processor takes an AST when it is about to return from an * interrupt context, and calls ast_taken. * * Machine-dependent code is responsible for maintaining * a set of reasons for an AST, and passing this set to ast_taken. */ typedef uint32_t ast_t; /* * Bits for reasons */ #define AST_PREEMPT 0x01 #define AST_QUANTUM 0x02 #define AST_URGENT 0x04 #define AST_HANDOFF 0x08 #define AST_YIELD 0x10 #define AST_APC 0x20 /* migration APC hook */ /* * JMM - This is here temporarily. AST_BSD is used to simulate a * general purpose mechanism for setting asynchronous procedure calls * from the outside. */ #define AST_BSD 0x80 #define AST_NONE 0x00 #define AST_ALL (~AST_NONE) #define AST_SCHEDULING (AST_PREEMPTION | AST_YIELD | AST_HANDOFF) #define AST_PREEMPTION (AST_PREEMPT | AST_QUANTUM | AST_URGENT) #ifdef MACHINE_AST /* * machine/ast.h is responsible for defining aston and astoff. */ #else /* MACHINE_AST */ #define aston(mycpu) #define astoff(mycpu) #endif /* MACHINE_AST */ /* Initialize module */ extern void ast_init(void); /* Handle ASTs */ extern void ast_taken( ast_t mask, boolean_t enable); /* Check for pending ASTs */ extern void ast_check( processor_t processor); /* Pending ast mask for the current processor */ extern ast_t *ast_pending(void); /* * Per-thread ASTs are reset at context-switch time. */ #ifndef MACHINE_AST_PER_THREAD #define MACHINE_AST_PER_THREAD 0 #endif #define AST_PER_THREAD (AST_APC | AST_BSD | MACHINE_AST_PER_THREAD) /* * ast_pending(), ast_on(), ast_off(), ast_context(), and ast_propagate() * assume splsched. */ #define ast_on_fast(reasons) \ MACRO_BEGIN \ ast_t *myast = ast_pending(); \ \ if ((*myast |= (reasons)) != AST_NONE) \ { aston(myast); } \ MACRO_END #define ast_off_fast(reasons) \ MACRO_BEGIN \ ast_t *myast = ast_pending(); \ \ if ((*myast &= ~(reasons)) == AST_NONE) \ { astoff(myast); } \ MACRO_END #define ast_propagate(reasons) ast_on(reasons) #define ast_context(act) \ MACRO_BEGIN \ ast_t *myast = ast_pending(); \ \ if ((*myast = ((*myast &~ AST_PER_THREAD) | (act)->ast)) != AST_NONE) \ { aston(myast); } \ else \ { astoff(myast); } \ MACRO_END #define ast_on(reason) ast_on_fast(reason) #define ast_off(reason) ast_off_fast(reason) /* * NOTE: if thread is the current thread, thread_ast_set() should * be followed by ast_propagate(). */ #define thread_ast_set(act, reason) \ (hw_atomic_or(&(act)->ast, (reason))) #define thread_ast_clear(act, reason) \ (hw_atomic_and(&(act)->ast, ~(reason))) #define thread_ast_clear_all(act) \ (hw_atomic_and(&(act)->ast, AST_NONE)) #ifdef MACH_BSD extern void astbsd_on(void); extern void act_set_astbsd(thread_t); extern void bsd_ast(thread_t); #endif /* MACH_BSD */ #endif /* _KERN_AST_H_ */ |