Searched refs:_clp (Results 1 – 1 of 1) sorted by relevance
114 #define CONFIG_LOCK_INIT(_clp) \ argument116 mutex_init((_clp)->cl_mutex, NULL, MUTEX_DEFAULT, \118 cv_init((_clp)->cl_cv, NULL, CV_DEFAULT, NULL); \121 #define CONFIG_LOCK_FINI(_clp) \ argument123 mutex_destroy((_clp)->cl_mutex); \124 cv_destroy((_clp)->cl_cv); \127 #define CONFIG_LOCK_ENTER(_clp, _rw) \ argument129 mutex_enter((_clp)->cl_mutex); \131 while ((_clp)->cl_reader || \132 ((_clp)->cl_owner != NULL && \[all …]