Home
last modified time | relevance | path

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

/freebsd-14.2/sys/kern/
H A Dsubr_trap.c199 ast_prep(struct thread *td, int tda __unused) in ast_prep()
259 ast_sched_locked(struct thread *td, int tda) in ast_sched_locked() argument
262 MPASS(tda < TDA_MAX); in ast_sched_locked()
264 td->td_ast |= TDAI(tda); in ast_sched_locked()
268 ast_unsched_locked(struct thread *td, int tda) in ast_unsched_locked() argument
271 MPASS(tda < TDA_MAX); in ast_unsched_locked()
273 td->td_ast &= ~TDAI(tda); in ast_unsched_locked()
277 ast_sched(struct thread *td, int tda) in ast_sched() argument
280 ast_sched_locked(td, tda); in ast_sched()
H A Dkern_clock.c383 ast_oweupc(struct thread *td, int tda __unused) in ast_oweupc()
393 ast_alrm(struct thread *td, int tda __unused) in ast_alrm()
404 ast_prof(struct thread *td, int tda __unused) in ast_prof()
H A Dkern_synch.c639 ast_scheduler(struct thread *td, int tda __unused) in ast_scheduler()
H A Dkern_sig.c283 ast_sig(struct thread *td, int tda) in ast_sig() argument
292 if (p->p_numthreads == 1 && (tda & (TDAI(TDA_SIG) | in ast_sig()
305 if (SIGPENDING(td) && ((tda | td->td_ast) & in ast_sig()
311 p, td, tda, td->td_ast, td->td_flags); in ast_sig()
324 if ((tda & TDAI(TDA_SIG)) != 0 || p->p_pendingcnt > 0 || in ast_sig()
351 ast_sigsuspend(struct thread *td, int tda __unused) in ast_sigsuspend()
H A Dkern_fork.c805 ast_vfork(struct thread *td, int tda __unused) in ast_vfork()
H A Dkern_racct.c1096 ast_racct(struct thread *td, int tda __unused) in ast_racct()
H A Dkern_ktrace.c211 ast_ktrace(struct thread *td, int tda __unused) in ast_ktrace()
H A Dkern_thread.c518 ast_suspend(struct thread *td, int tda __unused) in ast_suspend()
H A Dkern_event.c1796 ast_kqueue(struct thread *td, int tda __unused) in ast_kqueue()
/freebsd-14.2/sys/sys/
H A Dproc.h505 #define TDAI(tda) (1U << (tda)) argument
506 #define td_ast_pending(td, tda) ((td->td_ast & TDAI(tda)) != 0) argument
1159 void ast_deregister(int tda);
1160 void ast_sched_locked(struct thread *td, int tda);
1162 void ast_sched(struct thread *td, int tda);
1163 void ast_unsched_locked(struct thread *td, int tda);
/freebsd-14.2/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);
/freebsd-14.2/sys/geom/
H A Dgeom_event.c98 ast_geom(struct thread *td, int tda __unused) in ast_geom()
/freebsd-14.2/sys/dev/hwpmc/
H A Dhwpmc_soft.c413 ast_hwpmc(struct thread *td, int tda __unused) in ast_hwpmc()
/freebsd-14.2/sys/security/mac_lomac/
H A Dmac_lomac.c594 ast_mac(struct thread *td, int tda __unused) in ast_mac()