Home
last modified time | relevance | path

Searched refs:tm_mtx (Results 1 – 2 of 2) sorted by relevance

/freebsd-14-stable/sys/kern/
HDsubr_terminal.c58 mtx_lock_spin(&(tm)->tm_mtx); \
64 mtx_unlock_spin(&(tm)->tm_mtx); \
70 mtx_lock_spin(&(tm)->tm_mtx); \
74 mtx_unlock_spin(&(tm)->tm_mtx); \
76 #define TERMINAL_LOCK_CONS(tm) mtx_lock_spin(&(tm)->tm_mtx)
77 #define TERMINAL_UNLOCK_CONS(tm) mtx_unlock_spin(&(tm)->tm_mtx)
171 mtx_init(&tm->tm_mtx, "trmlck", NULL, MTX_SPIN); in terminal_init()
/freebsd-14-stable/sys/sys/
HDterminal.h198 struct mtx tm_mtx; member