Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/os/
H A Dexit.c344 ret_tidhash_t *ret_tidhash; in proc_exit() local
796 ret_tidhash = p->p_ret_tidhash; in proc_exit()
875 while (ret_tidhash != NULL) { in proc_exit()
876 ret_tidhash_t *next = ret_tidhash->rth_next; in proc_exit()
877 kmem_free(ret_tidhash->rth_tidhash, in proc_exit()
878 ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t)); in proc_exit()
879 kmem_free(ret_tidhash, sizeof (*ret_tidhash)); in proc_exit()
880 ret_tidhash = next; in proc_exit()
H A Dlwp.c115 ret_tidhash_t *ret_tidhash = NULL; in lwp_create() local
342 if (ret_tidhash == NULL) in lwp_create()
343 ret_tidhash = kmem_zalloc(sizeof (ret_tidhash_t), in lwp_create()
407 ret_tidhash->rth_tidhash = old_hash; in lwp_create()
408 ret_tidhash->rth_tidhash_sz = old_hashsz; in lwp_create()
409 ret_tidhash->rth_next = p->p_ret_tidhash; in lwp_create()
410 p->p_ret_tidhash = ret_tidhash; in lwp_create()
441 ret_tidhash = NULL; in lwp_create()
784 if (ret_tidhash != NULL) in lwp_create()
785 kmem_free(ret_tidhash, sizeof (ret_tidhash_t)); in lwp_create()
H A Dexec.c136 ret_tidhash_t *ret_tidhash; in exec_common() local
495 ret_tidhash = p->p_ret_tidhash; in exec_common()
509 while (ret_tidhash != NULL) { in exec_common()
510 ret_tidhash_t *next = ret_tidhash->rth_next; in exec_common()
511 kmem_free(ret_tidhash->rth_tidhash, in exec_common()
512 ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t)); in exec_common()
513 kmem_free(ret_tidhash, sizeof (*ret_tidhash)); in exec_common()
514 ret_tidhash = next; in exec_common()
/titanic_41/usr/src/uts/common/sys/
H A Dproc.h118 typedef struct ret_tidhash { struct
119 struct ret_tidhash *rth_next; argument