Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/os/
H A Dexit.c344 ret_tidhash_t *ret_tidhash; in proc_exit() local
804 ret_tidhash = p->p_ret_tidhash; in proc_exit()
883 while (ret_tidhash != NULL) { in proc_exit()
884 ret_tidhash_t *next = ret_tidhash->rth_next; in proc_exit()
885 kmem_free(ret_tidhash->rth_tidhash, in proc_exit()
886 ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t)); in proc_exit()
887 kmem_free(ret_tidhash, sizeof (*ret_tidhash)); in proc_exit()
888 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_50/usr/src/uts/common/sys/
H A Dproc.h119 typedef struct ret_tidhash { struct
120 struct ret_tidhash *rth_next; argument