Home
last modified time | relevance | path

Searched refs:ts_value (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/disp/
H A Dthread.c1688 if (tsd->ts_value[k] && tsd_destructor[k]) in tsd_destroy()
1689 (*tsd_destructor[k])(tsd->ts_value[k]); in tsd_destroy()
1693 tsd->ts_value[k] = NULL; in tsd_destroy()
1737 return (tsd->ts_value[key - 1]); in tsd_agent_get()
1763 tsd->ts_value[key - 1] = value; in tsd_agent_set()
1785 tsd->ts_value = tsd_realloc(tsd->ts_value, in tsd_agent_set()
1789 tsd->ts_value[key - 1] = value; in tsd_agent_set()
1846 if (tsd->ts_value[i] && tsd_destructor[i]) in tsd_exit()
1847 (*tsd_destructor[i])(tsd->ts_value[i]); in tsd_exit()
1848 tsd->ts_value[i] = NULL; in tsd_exit()
[all …]
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dtsd.c112 eladdr = (uintptr_t)(ts->ts_value + key - 1); in ttotsd()
/illumos-gate/usr/src/uts/common/sys/
H A Dthread.h273 void **ts_value; /* array of value/key */ member