Lines Matching refs:clp
283 cfglock_t *clp;
288 clp = mdb_alloc(sizeof (cfglock_t), UM_SLEEP);
289 if (mdb_vread(clp, sizeof (cfglock_t), addr) == -1) {
291 mdb_free(clp, sizeof (cfglock_t));
295 mdb_printf("%?p: %20s = %p\n", addr, "owner", clp->cl_owner);
297 clp->cl_reader ? "TRUE" : "FALSE");
298 mdb_printf("%?s %20s = %d\n", "", "writers", clp->cl_writers);
300 addr + ((uintptr_t)clp->cl_mutex - (uintptr_t)clp));
302 addr + ((uintptr_t)clp->cl_cv - (uintptr_t)clp));
305 mdb_free(clp, sizeof (cfglock_t));