Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/disp/
H A Dthread.c1584 static uint_t tsd_nkeys; /* size of destructor array */ variable
1624 for (i = 0; i < tsd_nkeys; ++i) in tsd_create()
1631 if (i == tsd_nkeys) { in tsd_create()
1632 if ((nkeys = (tsd_nkeys << 1)) == 0) in tsd_create()
1636 (size_t)(tsd_nkeys * sizeof (void (*)(void *))), in tsd_create()
1638 tsd_nkeys = nkeys; in tsd_create()
1669 ASSERT(key <= tsd_nkeys); in tsd_destroy()
1767 ASSERT(key <= tsd_nkeys); in tsd_agent_set()