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

/freebsd-11-stable/sys/security/audit/
H A Daudit_pipe.c123 struct mtx ap_mtx; member in struct:audit_pipe
169 * Current pending record list. Protected by a combination of ap_mtx
172 * may sleep while copying and therefore cannot hold ap_mtx.
182 #define AUDIT_PIPE_LOCK(ap) mtx_lock(&(ap)->ap_mtx)
183 #define AUDIT_PIPE_LOCK_ASSERT(ap) mtx_assert(&(ap)->ap_mtx, MA_OWNED)
184 #define AUDIT_PIPE_LOCK_DESTROY(ap) mtx_destroy(&(ap)->ap_mtx)
185 #define AUDIT_PIPE_LOCK_INIT(ap) mtx_init(&(ap)->ap_mtx, \
187 #define AUDIT_PIPE_UNLOCK(ap) mtx_unlock(&(ap)->ap_mtx)
188 #define AUDIT_PIPE_MTX(ap) (&(ap)->ap_mtx)

Completed in 110 milliseconds