Searched refs:myast (Results 1 - 7 of 7) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dast.h151 ast_t *myast = ast_pending(); \
153 if ((*myast |= (reasons)) != AST_NONE) \
154 { aston(myast); } \
159 ast_t *myast = ast_pending(); \
161 if ((*myast &= ~(reasons)) == AST_NONE) \
162 { astoff(myast); } \
169 ast_t *myast = ast_pending(); \
171 if ((*myast = ((*myast &~ AST_PER_THREAD) | (act)->ast)) != AST_NONE) \
172 { aston(myast); } \
[all...]
H A Dast.c99 ast_t *myast = ast_pending(); local
106 if(*myast & AST_CHUD_ALL) {
109 if(*myast == AST_NONE) {
114 *myast &= ~AST_CHUD_ALL;
117 reasons &= *myast;
118 *myast &= ~reasons;
/macosx-10.5.8/xnu-1228.15.4/osfmk/chud/ppc/
H A Dchud_osfmk_callback_ppc.c257 ast_t *myast = ast_pending(); local
261 if(*myast & AST_CHUD_URGENT) {
262 *myast &= ~(AST_CHUD_URGENT | AST_CHUD);
263 if((*myast & AST_PREEMPTION) != AST_PREEMPTION) *myast &= ~(AST_URGENT);
265 } else if(*myast & AST_CHUD) {
266 *myast &= ~(AST_CHUD);
284 if(perfmon_ast_callback_fn && ((*myast & AST_CHUD_URGENT) || ((*myast & AST_CHUD) && !(*myast
328 ast_t *myast = ast_pending(); local
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/chud/i386/
H A Dchud_osfmk_callback_i386.c311 ast_t *myast = ast_pending(); local
315 if (*myast & AST_CHUD_URGENT) {
316 *myast &= ~(AST_CHUD_URGENT | AST_CHUD);
317 if ((*myast & AST_PREEMPTION) != AST_PREEMPTION)
318 *myast &= ~(AST_URGENT);
320 } else if (*myast & AST_CHUD) {
321 *myast &= ~(AST_CHUD);
372 ast_t *myast = ast_pending(); local
375 *myast |= (AST_CHUD_URGENT | AST_URGENT);
377 *myast |
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/
H A Dtrap.c217 ast_t *myast; local
265 myast = ast_pending();
266 while (*myast & AST_ALL) {
269 myast = ast_pending();
329 ast_t *myast; local
353 myast = ast_pending();
356 if (*myast & AST_CHUD_ALL)
359 *myast &= ~AST_CHUD_ALL;
955 ast_t *myast; local
993 myast
1235 ast_t *myast; local
[all...]
H A Dmachine_routines.c227 ast_t *myast; local
229 myast = ast_pending();
231 if ( (get_preemption_level() == 0) && (*myast & AST_URGENT) ) {
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dtrap.c138 ast_t *myast; local
145 myast = ast_pending();
147 if(*myast & AST_CHUD_ALL) {
151 *myast &= ~AST_CHUD_ALL;
750 myast = ast_pending();
751 while (*myast & AST_ALL) {
754 myast = ast_pending();

Completed in 93 milliseconds