Symbol: tidhash_t
usr/src/uts/common/os/exec.c
214
tidhash_t *tidhash;
usr/src/uts/common/os/exec.c
217
tidhash_t *old_tidhash;
usr/src/uts/common/os/exec.c
543
tidhash = kmem_zalloc(2 * sizeof (tidhash_t), KM_SLEEP);
usr/src/uts/common/os/exec.c
607
kmem_free(old_tidhash, old_tidhash_sz * sizeof (tidhash_t));
usr/src/uts/common/os/exec.c
612
ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t));
usr/src/uts/common/os/exit.c
1010
kmem_free(tidhash, tidhash_sz * sizeof (tidhash_t));
usr/src/uts/common/os/exit.c
1014
ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t));
usr/src/uts/common/os/exit.c
477
tidhash_t *tidhash;
usr/src/uts/common/os/fork.c
381
kmem_zalloc(cp->p_tidhash_sz * sizeof (tidhash_t), KM_SLEEP);
usr/src/uts/common/os/lwp.c
113
tidhash_t *old_hash = NULL;
usr/src/uts/common/os/lwp.c
1954
lwp_hash_in(proc_t *p, lwpent_t *lep, tidhash_t *tidhash, uint_t tidhash_sz,
usr/src/uts/common/os/lwp.c
1957
tidhash_t *thp = &tidhash[TIDHASH(lep->le_lwpid, tidhash_sz)];
usr/src/uts/common/os/lwp.c
2002
tidhash_t *thp = &p->p_tidhash[TIDHASH(lwpid, p->p_tidhash_sz)];
usr/src/uts/common/os/lwp.c
2030
tidhash_t *thp;
usr/src/uts/common/os/lwp.c
2057
tidhash_t *tidhash;
usr/src/uts/common/os/lwp.c
2059
tidhash_t *thp;
usr/src/uts/common/os/lwp.c
333
tidhash_t *new_hash;
usr/src/uts/common/os/lwp.c
355
new_hash = kmem_zalloc(new_hashsz * sizeof (tidhash_t),
usr/src/uts/common/os/main.c
111
tidhash_t p0_tidhash[2];
usr/src/uts/common/sys/proc.h
124
tidhash_t *rth_tidhash;
usr/src/uts/common/sys/proc.h
229
tidhash_t *p_tidhash; /* tid (lwpid) lookup hash table */
usr/src/uts/common/sys/proc.h
779
extern void lwp_hash_in(proc_t *, lwpent_t *, tidhash_t *, uint_t, int);