Lines Matching defs:sx
309 sx_init_flags(struct sx *sx, const char *name, int flags)311 sx->owned = 0;315 sx_destroy(struct sx *sx)321 sx_xlock(struct sx *sx)323 sx->owned++;327 sx_xunlock(struct sx *sx)329 sx->owned--;333 sx_xlocked(struct sx *sx)335 return (sx->owned != 0);