Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/os/
H A Dexit.c479 ret_tidhash_t *ret_tidhash; in proc_exit() local
932 ret_tidhash = p->p_ret_tidhash; in proc_exit()
1011 while (ret_tidhash != NULL) { in proc_exit()
1012 ret_tidhash_t *next = ret_tidhash->rth_next; in proc_exit()
1013 kmem_free(ret_tidhash->rth_tidhash, in proc_exit()
1014 ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t)); in proc_exit()
1015 kmem_free(ret_tidhash, sizeof (*ret_tidhash)); in proc_exit()
1016 ret_tidhash = next; in proc_exit()
H A Dlwp.c114 ret_tidhash_t *ret_tidhash = NULL; in lwp_create() local
341 if (ret_tidhash == NULL) in lwp_create()
342 ret_tidhash = kmem_zalloc(sizeof (ret_tidhash_t), in lwp_create()
406 ret_tidhash->rth_tidhash = old_hash; in lwp_create()
407 ret_tidhash->rth_tidhash_sz = old_hashsz; in lwp_create()
408 ret_tidhash->rth_next = p->p_ret_tidhash; in lwp_create()
409 p->p_ret_tidhash = ret_tidhash; in lwp_create()
440 ret_tidhash = NULL; in lwp_create()
785 if (ret_tidhash != NULL) in lwp_create()
786 kmem_free(ret_tidhash, sizeof (ret_tidhash_t)); in lwp_create()
H A Dexec.c219 ret_tidhash_t *ret_tidhash; in exec_common() local
595 ret_tidhash = p->p_ret_tidhash; in exec_common()
609 while (ret_tidhash != NULL) { in exec_common()
610 ret_tidhash_t *next = ret_tidhash->rth_next; in exec_common()
611 kmem_free(ret_tidhash->rth_tidhash, in exec_common()
612 ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t)); in exec_common()
613 kmem_free(ret_tidhash, sizeof (*ret_tidhash)); in exec_common()
614 ret_tidhash = next; in exec_common()
/illumos-gate/usr/src/uts/common/sys/
H A Dproc.h122 typedef struct ret_tidhash { struct
123 struct ret_tidhash *rth_next; argument