Searched refs:_clp (Results 1 – 1 of 1) sorted by relevance
112 #define CONFIG_LOCK_INIT(_clp) \ argument114 mutex_init((_clp)->cl_mutex, NULL, MUTEX_DEFAULT, \116 cv_init((_clp)->cl_cv, NULL, CV_DEFAULT, NULL); \119 #define CONFIG_LOCK_FINI(_clp) \ argument121 mutex_destroy((_clp)->cl_mutex); \122 cv_destroy((_clp)->cl_cv); \125 #define CONFIG_LOCK_ENTER(_clp, _rw) \ argument127 mutex_enter((_clp)->cl_mutex); \129 while ((_clp)->cl_reader || \130 ((_clp)->cl_owner != NULL && \[all …]