void act_set_kperf( thread_t thread) { /* safety check */ if (thread != current_thread()) if( !ml_get_interrupts_enabled() ) panic("unsafe act_set_kperf operation"); act_set_ast( thread, AST_KPERF ); }
void act_set_apc( thread_t thread) { act_set_ast( thread, AST_APC ); }
void act_set_astbsd( thread_t thread) { act_set_ast( thread, AST_BSD ); }
void act_set_astmacf( thread_t thread) { act_set_ast( thread, AST_MACF); }
void set_astledger(thread_t thread) { act_set_ast(thread, AST_LEDGER); }
void act_set_io_telemetry_ast(thread_t thread) { act_set_ast(thread, AST_TELEMETRY_IO); }