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

/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_pipe.c114 struct mtx ap_mtx; member in struct:audit_pipe
160 * Current pending record list. Protected by a combination of ap_mtx
163 * may sleep while copying and therefore cannot hold ap_mtx.
173 #define AUDIT_PIPE_LOCK(ap) mtx_lock(&(ap)->ap_mtx)
174 #define AUDIT_PIPE_LOCK_ASSERT(ap) mtx_assert(&(ap)->ap_mtx, MA_OWNED)
175 #define AUDIT_PIPE_LOCK_DESTROY(ap) mtx_destroy(&(ap)->ap_mtx)
176 #define AUDIT_PIPE_LOCK_INIT(ap) mtx_init(&(ap)->ap_mtx, \
178 #define AUDIT_PIPE_UNLOCK(ap) mtx_unlock(&(ap)->ap_mtx)
179 #define AUDIT_PIPE_MTX(ap) (&(ap)->ap_mtx)

Completed in 19 milliseconds