Home
last modified time | relevance | path

Searched refs:_clp (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/ipp/
H A Dipp_impl.h112 #define CONFIG_LOCK_INIT(_clp) \ argument
114 mutex_init((_clp)->cl_mutex, NULL, MUTEX_DEFAULT, \
116 cv_init((_clp)->cl_cv, NULL, CV_DEFAULT, NULL); \
119 #define CONFIG_LOCK_FINI(_clp) \ argument
121 mutex_destroy((_clp)->cl_mutex); \
122 cv_destroy((_clp)->cl_cv); \
125 #define CONFIG_LOCK_ENTER(_clp, _rw) \ argument
127 mutex_enter((_clp)->cl_mutex); \
129 while ((_clp)->cl_reader || \
130 ((_clp)->cl_owner != NULL && \
[all …]