Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dsobj.c476 #define RW_BIT(n, offon) (wwwh & (1 << (n)) ? offon[1] : offon[0])
477 #define RW_BIT_SET(n) (wwwh & (1 << (n)))
495 uintptr_t wwwh; in rwlock() local
515 if (((wwwh = lock.rw_wwwh) & RW_DOUBLE_LOCK) == RW_DOUBLE_LOCK) in rwlock()
517 else if ((wwwh = lock.rw_wwwh) & RW_WRITE_LOCKED) in rwlock()
518 mdb_printf("%*p", RW_OWNR_WIDTH, wwwh & RW_OWNER); in rwlock()
520 uintptr_t count = (wwwh & RW_HOLD_COUNT) >> RW_HOLD_COUNT_SHIFT; in rwlock()
532 " |"[(wwwh & RW_DOUBLE_LOCK) == RW_DOUBLE_LOCK], in rwlock()
536 if ((wwwh & RW_DOUBLE_LOCK) == RW_DOUBLE_LOCK) { in rwlock()