Home
last modified time | relevance | path

Searched refs:tidhash (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Dlwp.c1924 lwp_hash_in(proc_t *p, lwpent_t *lep, tidhash_t *tidhash, uint_t tidhash_sz, in lwp_hash_in() argument
1927 tidhash_t *thp = &tidhash[TIDHASH(lep->le_lwpid, tidhash_sz)]; in lwp_hash_in()
2027 tidhash_t *tidhash; in lwp_hash_lookup_and_lock() local
2035 if ((tidhash = p->p_tidhash) == NULL) in lwp_hash_lookup_and_lock()
2038 thp = &tidhash[TIDHASH(lwpid, tidhash_sz)]; in lwp_hash_lookup_and_lock()
2046 if (tidhash != p->p_tidhash || tidhash_sz != p->p_tidhash_sz) { in lwp_hash_lookup_and_lock()
H A Dexit.c477 tidhash_t *tidhash; in proc_exit() local
930 tidhash = p->p_tidhash; in proc_exit()
1010 kmem_free(tidhash, tidhash_sz * sizeof (tidhash_t)); in proc_exit()
H A Dexec.c214 tidhash_t *tidhash; in exec_common() local
543 tidhash = kmem_zalloc(2 * sizeof (tidhash_t), KM_SLEEP); in exec_common()
591 lwp_hash_in(p, lep, tidhash, 2, 0); in exec_common()
592 p->p_tidhash = tidhash; in exec_common()
/illumos-gate/usr/src/uts/common/sys/
H A Dproc.h114 typedef struct tidhash { struct