Searched refs:fd_sx (Results 1 – 1 of 1) sorted by relevance
88 struct sx fd_sx; /* protects members of this struct */ member123 #define FILEDESC_LOCK_INIT(fdp) sx_init(&(fdp)->fd_sx, "filedesc structure")124 #define FILEDESC_LOCK_DESTROY(fdp) sx_destroy(&(fdp)->fd_sx)125 #define FILEDESC_LOCK(fdp) (&(fdp)->fd_sx)126 #define FILEDESC_XLOCK(fdp) sx_xlock(&(fdp)->fd_sx)127 #define FILEDESC_XUNLOCK(fdp) sx_xunlock(&(fdp)->fd_sx)128 #define FILEDESC_SLOCK(fdp) sx_slock(&(fdp)->fd_sx)129 #define FILEDESC_SUNLOCK(fdp) sx_sunlock(&(fdp)->fd_sx)131 #define FILEDESC_LOCK_ASSERT(fdp) sx_assert(&(fdp)->fd_sx, SX_LOCKED | \133 #define FILEDESC_XLOCK_ASSERT(fdp) sx_assert(&(fdp)->fd_sx, SX_XLOCKED | \[all …]