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

/illumos-gate/usr/src/lib/librsm/common/
H A Drsmlib.c91 static rsm_pollfd_table_t pollfd_table; variable
142 /* initialize the pollfd_table */
143 mutex_init(&pollfd_table.lock, USYNC_THREAD, NULL);
146 pollfd_table.buckets[i] = NULL;
405 mutex_lock(&pollfd_table.lock);
407 chunk = pollfd_table.buckets[hash];
417 mutex_unlock(&pollfd_table.lock);
428 chunk->next = pollfd_table.buckets[hash];
429 pollfd_table.buckets[hash] = chunk;
448 mutex_unlock(&pollfd_table
[all...]

Completed in 219 milliseconds