Home
last modified time | relevance | path

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

/freebsd/sys/security/audit/
H A Daudit_pipe.c120 struct mtx ap_mtx; member
179 #define AUDIT_PIPE_LOCK(ap) mtx_lock(&(ap)->ap_mtx)
180 #define AUDIT_PIPE_LOCK_ASSERT(ap) mtx_assert(&(ap)->ap_mtx, MA_OWNED)
181 #define AUDIT_PIPE_LOCK_DESTROY(ap) mtx_destroy(&(ap)->ap_mtx)
182 #define AUDIT_PIPE_LOCK_INIT(ap) mtx_init(&(ap)->ap_mtx, \
184 #define AUDIT_PIPE_UNLOCK(ap) mtx_unlock(&(ap)->ap_mtx)
185 #define AUDIT_PIPE_MTX(ap) (&(ap)->ap_mtx)