Exemplo n.º 1
0
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 );
}
Exemplo n.º 2
0
void
act_set_apc(
	thread_t	thread)
{
	act_set_ast( thread, AST_APC );
}
Exemplo n.º 3
0
void
act_set_astbsd(
	thread_t	thread)
{
	act_set_ast( thread, AST_BSD );
}
Exemplo n.º 4
0
void
act_set_astmacf(
	thread_t	thread)
{
	act_set_ast( thread, AST_MACF);
}
Exemplo n.º 5
0
void
set_astledger(thread_t thread)
{
	act_set_ast(thread, AST_LEDGER);
}
Exemplo n.º 6
0
void
act_set_io_telemetry_ast(thread_t thread)
{
	act_set_ast(thread, AST_TELEMETRY_IO);
}