HomeSort by relevance Sort by last modified time
    Searched defs:ret_tidhash (Results 1 - 4 of 4) sorted by null

  /onnv/onnv-gate/usr/src/uts/common/os/
exit.c 344 ret_tidhash_t *ret_tidhash; local
785 ret_tidhash = p->p_ret_tidhash;
865 while (ret_tidhash != NULL) {
866 ret_tidhash_t *next = ret_tidhash->rth_next;
867 kmem_free(ret_tidhash->rth_tidhash,
868 ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t));
869 kmem_free(ret_tidhash, sizeof (*ret_tidhash));
870 ret_tidhash = next;
lwp.c 111 ret_tidhash_t *ret_tidhash = NULL; local
312 if (ret_tidhash == NULL)
313 ret_tidhash = kmem_zalloc(sizeof (ret_tidhash_t),
377 ret_tidhash->rth_tidhash = old_hash;
378 ret_tidhash->rth_tidhash_sz = old_hashsz;
379 ret_tidhash->rth_next = p->p_ret_tidhash;
380 p->p_ret_tidhash = ret_tidhash;
411 ret_tidhash = NULL;
753 if (ret_tidhash != NULL)
754 kmem_free(ret_tidhash, sizeof (ret_tidhash_t))
    [all...]
exec.c 138 ret_tidhash_t *ret_tidhash; local
472 ret_tidhash = p->p_ret_tidhash;
486 while (ret_tidhash != NULL) {
487 ret_tidhash_t *next = ret_tidhash->rth_next;
488 kmem_free(ret_tidhash->rth_tidhash,
489 ret_tidhash->rth_tidhash_sz * sizeof (tidhash_t));
490 kmem_free(ret_tidhash, sizeof (*ret_tidhash));
491 ret_tidhash = next;
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
proc.h 119 typedef struct ret_tidhash { struct
120 struct ret_tidhash *rth_next;

Completed in 0 milliseconds