Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/sys/
H A Dsynch.h138 #define LOCK_PRIO_PROTECT 0x20 /* priority ceiling lock */ macro
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dsynch.c115 LOCK_PRIO_INHERIT | LOCK_PRIO_PROTECT | \
149 if (type & LOCK_PRIO_PROTECT) in mutex_init()
152 (type & (LOCK_PRIO_INHERIT | LOCK_PRIO_PROTECT)) in mutex_init()
153 == (LOCK_PRIO_INHERIT | LOCK_PRIO_PROTECT) || in mutex_init()
154 ((type & LOCK_PRIO_PROTECT) && in mutex_init()
175 ((type & LOCK_PRIO_PROTECT) && mp->mutex_ceiling != ceil)) { in mutex_init()
190 if (error == 0 && (type & LOCK_PRIO_PROTECT)) { in mutex_init()
2073 if ((mtype & LOCK_PRIO_PROTECT) && noceil == 0) { in mutex_lock_internal()
2159 if ((mtype & LOCK_PRIO_PROTECT) && noceil == 0) { in mutex_lock_internal()
2537 if ((mtype & LOCK_PRIO_PROTECT) && _ceil_mylist_del(mp)) in mutex_unlock_internal()
[all …]
/illumos-gate/usr/src/cmd/truss/
H A Dexpound.c531 LOCK_PRIO_INHERIT | LOCK_PRIO_PROTECT | LOCK_ROBUST | \
551 if (type & LOCK_PRIO_PROTECT) in synch_type()