Searched defs:uu_panic_thread (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libuutil/common/
H A Duu_misc.c68 static pthread_t uu_panic_thread; variable
193 if (uu_panic_thread == 0) {
194 uu_panic_thread = pthread_self();
202 if (uu_panic_thread == pthread_self())
243 uu_panic_thread = 0;
/illumos-gate/usr/src/cmd/mdb/common/modules/libuutil/
H A Dlibuutil.c41 pthread_t uu_panic_thread = 0; local
46 if (mdb_readvar(&uu_panic_thread, "uu_panic_thread") == -1) {
47 mdb_warn("unable to read uu_panic_thread");
50 if (uu_panic_thread != 0) {
51 mdb_printf("thread %d uu_panicked\n", uu_panic_thread);

Completed in 63 milliseconds