Searched defs:thrinfo (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/ptools/pstack/
H A Dpstack.c317 td_thrinfo_t thrinfo; local
321 if (td_thr_get_info(Thp, &thrinfo) != TD_OK)
326 tip->threadid = thrinfo.ti_tid;
327 tip->lwpid = thrinfo.ti_lid;
328 tip->state = thrinfo.ti_state;
329 tip->startfunc = thrinfo.ti_startfunc;
330 tip->exitval = (uintptr_t)thrinfo.ti_exitval;
333 if (thrinfo.ti_state == TD_THR_ZOMBIE ||
/illumos-gate/usr/src/cmd/truss/
H A Dfcall.c637 td_thrinfo_t thrinfo; local
680 td_thr_get_info(&th, &thrinfo) == TD_OK &&
681 sp >= (uintptr_t)thrinfo.ti_stkbase - thrinfo.ti_stksize &&
682 sp < (uintptr_t)thrinfo.ti_stkbase) {
684 Stk->stkend = (uintptr_t)thrinfo.ti_stkbase;
685 Stk->stkbase = Stk->stkend - thrinfo.ti_stksize;
709 td_thrinfo_t thrinfo; local
741 if (td_thr_get_info(Thp, &thrinfo) == TD_OK &&
742 sp >= (uintptr_t)thrinfo
826 td_thrinfo_t thrinfo; local
938 td_thrinfo_t thrinfo; local
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/rdc/
H A Drdc_io.c2795 _rdc_sync_wrthr(void *thrinfo) argument
2797 rdc_syncthr_t *syncinfo = (rdc_syncthr_t *)thrinfo;
2859 _rdc_sync_rdthr(void *thrinfo) argument
2861 rdc_syncthr_t *syncinfo = (rdc_syncthr_t *)thrinfo;
2917 _rdc_sync_thread(void *thrinfo) argument
2919 rdc_syncthr_t *syncinfo = (rdc_syncthr_t *)thrinfo;
2931 _rdc_sync_rdthr(thrinfo);
2933 _rdc_sync_wrthr(thrinfo);

Completed in 57 milliseconds