Searched defs:ret_tidhash (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Dexit.c344 ret_tidhash_t *ret_tidhash; local
804 ret_tidhash = p->p_ret_tidhash;
883 while (ret_tidhash != NULL) {
884 ret_tidhash_t *next = ret_tidhash->rth_next;
885 kmem_free(ret_tidhash->rth_tidhash,
886 ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t));
887 kmem_free(ret_tidhash, sizeof (*ret_tidhash));
888 ret_tidhash = next;
H A Dlwp.c115 ret_tidhash_t *ret_tidhash = NULL; local
342 if (ret_tidhash == NULL)
343 ret_tidhash = kmem_zalloc(sizeof (ret_tidhash_t),
407 ret_tidhash->rth_tidhash = old_hash;
408 ret_tidhash->rth_tidhash_sz = old_hashsz;
409 ret_tidhash->rth_next = p->p_ret_tidhash;
410 p->p_ret_tidhash = ret_tidhash;
441 ret_tidhash = NULL;
784 if (ret_tidhash != NULL)
785 kmem_free(ret_tidhash, sizeo
[all...]
H A Dexec.c152 ret_tidhash_t *ret_tidhash; local
511 ret_tidhash = p->p_ret_tidhash;
525 while (ret_tidhash != NULL) {
526 ret_tidhash_t *next = ret_tidhash->rth_next;
527 kmem_free(ret_tidhash->rth_tidhash,
528 ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t));
529 kmem_free(ret_tidhash, sizeof (*ret_tidhash));
530 ret_tidhash = next;
/illumos-gate/usr/src/uts/common/sys/
H A Dproc.h120 typedef struct ret_tidhash { struct
121 struct ret_tidhash *rth_next;

Completed in 71 milliseconds