Searched refs:timer_max (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/rt/
H A Dclock_timer.c49 * No more than 'timer_max' timers can be created by any process.
51 int timer_max = 0; variable
58 timer_max = (int)_sysconf(_SC_TIMER_MAX);
59 timer_tcd = malloc(timer_max * sizeof (*timer_tcd));
60 (void) memset(timer_tcd, 0, timer_max * sizeof (*timer_tcd));
162 for (timer = 0; timer < timer_max; timer++) {
H A Dsigev_thread.h110 extern int timer_max;
H A Dsigev_thread.c555 if ((uint_t)timer < timer_max && (tcdp = timer_tcd[timer]) != NULL) {
574 if ((uint_t)timer < timer_max && (tcdp = timer_tcd[timer]) != NULL)
/illumos-gate/usr/src/uts/common/os/
H A Dtimer.c54 int timer_max = _TIMER_MAX; variable
204 if (tid >= timer_max || tid < 0)
568 itp = kmem_zalloc(timer_max * sizeof (itimer_t *), KM_SLEEP);
574 kmem_free(itp, timer_max * sizeof (itimer_t *));
579 for (i = 0; i < timer_max && itp[i] != NULL; i++)
582 if (i == timer_max) {
594 ASSERT(i < timer_max && itp[i] == NULL);
845 for (i = 0; i < timer_max; i++) {
889 for (i = 0; i < timer_max; i++) {
919 for (i = 0; i < timer_max;
[all...]
/illumos-gate/usr/src/uts/common/syscall/
H A Dsysconfig.c164 return (timer_max);
/illumos-gate/usr/src/uts/common/sys/
H A Dtimer.h45 extern int timer_max; /* patchable via /etc/system */

Completed in 83 milliseconds