Symbol: ret_tidhash
usr/src/uts/common/os/exec.c
219
ret_tidhash_t *ret_tidhash;
usr/src/uts/common/os/exec.c
595
ret_tidhash = p->p_ret_tidhash;
usr/src/uts/common/os/exec.c
609
while (ret_tidhash != NULL) {
usr/src/uts/common/os/exec.c
610
ret_tidhash_t *next = ret_tidhash->rth_next;
usr/src/uts/common/os/exec.c
611
kmem_free(ret_tidhash->rth_tidhash,
usr/src/uts/common/os/exec.c
612
ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t));
usr/src/uts/common/os/exec.c
613
kmem_free(ret_tidhash, sizeof (*ret_tidhash));
usr/src/uts/common/os/exec.c
614
ret_tidhash = next;
usr/src/uts/common/os/exit.c
1011
while (ret_tidhash != NULL) {
usr/src/uts/common/os/exit.c
1012
ret_tidhash_t *next = ret_tidhash->rth_next;
usr/src/uts/common/os/exit.c
1013
kmem_free(ret_tidhash->rth_tidhash,
usr/src/uts/common/os/exit.c
1014
ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t));
usr/src/uts/common/os/exit.c
1015
kmem_free(ret_tidhash, sizeof (*ret_tidhash));
usr/src/uts/common/os/exit.c
1016
ret_tidhash = next;
usr/src/uts/common/os/exit.c
479
ret_tidhash_t *ret_tidhash;
usr/src/uts/common/os/exit.c
932
ret_tidhash = p->p_ret_tidhash;
usr/src/uts/common/os/lwp.c
115
ret_tidhash_t *ret_tidhash = NULL;
usr/src/uts/common/os/lwp.c
342
if (ret_tidhash == NULL)
usr/src/uts/common/os/lwp.c
343
ret_tidhash = kmem_zalloc(sizeof (ret_tidhash_t),
usr/src/uts/common/os/lwp.c
407
ret_tidhash->rth_tidhash = old_hash;
usr/src/uts/common/os/lwp.c
408
ret_tidhash->rth_tidhash_sz = old_hashsz;
usr/src/uts/common/os/lwp.c
409
ret_tidhash->rth_next = p->p_ret_tidhash;
usr/src/uts/common/os/lwp.c
410
p->p_ret_tidhash = ret_tidhash;
usr/src/uts/common/os/lwp.c
441
ret_tidhash = NULL;
usr/src/uts/common/os/lwp.c
786
if (ret_tidhash != NULL)
usr/src/uts/common/os/lwp.c
787
kmem_free(ret_tidhash, sizeof (ret_tidhash_t));
usr/src/uts/common/sys/proc.h
123
struct ret_tidhash *rth_next;