Home
last modified time | relevance | path

Searched refs:tda (Results 1 – 16 of 16) sorted by relevance

/src/sys/kern/
H A Dsubr_trap.c181 ast_prep(struct thread *td, int tda __unused) in ast_prep()
241 ast_sched_locked(struct thread *td, int tda) in ast_sched_locked() argument
244 MPASS(tda < TDA_MAX); in ast_sched_locked()
246 td->td_ast |= TDAI(tda); in ast_sched_locked()
250 ast_unsched_locked(struct thread *td, int tda) in ast_unsched_locked() argument
253 MPASS(tda < TDA_MAX); in ast_unsched_locked()
255 td->td_ast &= ~TDAI(tda); in ast_unsched_locked()
259 ast_sched(struct thread *td, int tda) in ast_sched() argument
262 ast_sched_locked(td, tda); in ast_sched()
H A Dkern_clock.c380 ast_oweupc(struct thread *td, int tda __unused) in ast_oweupc()
390 ast_alrm(struct thread *td, int tda __unused) in ast_alrm()
401 ast_prof(struct thread *td, int tda __unused) in ast_prof()
H A Dkern_synch.c600 ast_scheduler(struct thread *td, int tda __unused) in ast_scheduler()
H A Dkern_sig.c264 ast_sig(struct thread *td, int tda) in ast_sig() argument
273 if (p->p_numthreads == 1 && (tda & (TDAI(TDA_SIG) | in ast_sig()
286 if (SIGPENDING(td) && ((tda | td->td_ast) & in ast_sig()
292 p, td, tda, td->td_ast, td->td_flags); in ast_sig()
305 if ((tda & TDAI(TDA_SIG)) != 0 || p->p_pendingcnt > 0 || in ast_sig()
340 ast_sigsuspend(struct thread *td, int tda __unused) in ast_sigsuspend()
H A Dsched_4bsd.c281 maybe_resched_ast(struct thread *td, int tda) in maybe_resched_ast() argument
286 ast_scheduler(td, tda); in maybe_resched_ast()
H A Dkern_racct.c881 ast_racct(struct thread *td, int tda __unused) in ast_racct()
H A Dkern_fork.c854 ast_vfork(struct thread *td, int tda __unused) in ast_vfork()
H A Dkern_thread.c521 ast_suspend(struct thread *td, int tda __unused) in ast_suspend()
H A Dkern_ktrace.c213 ast_ktrace(struct thread *td, int tda __unused) in ast_ktrace()
H A Dkern_event.c1966 ast_kqueue(struct thread *td, int tda __unused) in ast_kqueue()
/src/sys/sys/
H A Dproc.h509 #define TDAI(tda) (1U << (tda)) argument
510 #define td_ast_pending(td, tda) ((td->td_ast & TDAI(tda)) != 0) argument
1151 void ast_deregister(int tda);
1152 void ast_sched_locked(struct thread *td, int tda);
1154 void ast_sched(struct thread *td, int tda);
1155 void ast_unsched_locked(struct thread *td, int tda);
H A Dsched.h191 void ast_scheduler(struct thread *td, int tda);
/src/sys/arm/ti/am335x/
H A Dtda19988.c796 DRIVER_MODULE(tda, iicbus, tda_driver, 0, 0);
797 MODULE_VERSION(tda, 1);
798 MODULE_DEPEND(tda, iicbus, 1, 1, 1);
/src/sys/geom/
H A Dgeom_event.c96 ast_geom(struct thread *td, int tda __unused) in ast_geom()
/src/sys/dev/hwpmc/
H A Dhwpmc_soft.c412 ast_hwpmc(struct thread *td, int tda __unused) in ast_hwpmc()
/src/sys/security/mac_lomac/
H A Dmac_lomac.c593 ast_mac(struct thread *td, int tda __unused) in ast_mac()