Home
last modified time | relevance | path

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

/f-stack/freebsd/sys/
H A Dsignalvar.h336 #define SIGIO_LOCK() mtx_lock(&sigio_lock)
337 #define SIGIO_TRYLOCK() mtx_trylock(&sigio_lock)
338 #define SIGIO_UNLOCK() mtx_unlock(&sigio_lock)
339 #define SIGIO_LOCKED() mtx_owned(&sigio_lock)
340 #define SIGIO_ASSERT_LOCKED() mtx_assert(&sigio_lock, MA_OWNED)
342 extern struct mtx sigio_lock;
/f-stack/freebsd/kern/
H A Dkern_descrip.c184 struct mtx sigio_lock; /* mtx to protect pointers to sigio */ variable
4880 mtx_init(&sigio_lock, "sigio lock", NULL, MTX_DEF); in filelistinit()