Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libc/port/rt/
H A Dclock_timer.c51 int timer_max = 0; variable
58 timer_max = (int)_sysconf(_SC_TIMER_MAX); in timer_init()
59 timer_tcd = malloc(timer_max * sizeof (*timer_tcd)); in timer_init()
60 (void) memset(timer_tcd, 0, timer_max * sizeof (*timer_tcd)); in timer_init()
162 for (timer = 0; timer < timer_max; timer++) { in postfork1_child_sigev_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) { in del_sigev_timer()
574 if ((uint_t)timer < timer_max && (tcdp = timer_tcd[timer]) != NULL) in sigev_timer_getoverrun()
/titanic_41/usr/src/uts/common/os/
H A Dtimer.c54 int timer_max = _TIMER_MAX; variable
204 if (tid >= timer_max || tid < 0) in timer_grab()
559 itp = kmem_zalloc(timer_max * sizeof (itimer_t *), KM_SLEEP); in timer_create()
565 kmem_free(itp, timer_max * sizeof (itimer_t *)); in timer_create()
570 for (i = 0; i < timer_max && itp[i] != NULL; i++) in timer_create()
573 if (i == timer_max) { in timer_create()
585 ASSERT(i < timer_max && itp[i] == NULL); in timer_create()
836 for (i = 0; i < timer_max; i++) { in timer_lwpexit()
880 for (i = 0; i < timer_max; i++) { in timer_lwpbind()
910 for (i = 0; i < timer_max; i++) in timer_exit()
[all …]
/titanic_41/usr/src/uts/common/sys/
H A Dtimer.h41 extern int timer_max; /* patchable via /etc/system */
/titanic_41/usr/src/uts/common/syscall/
H A Dsysconfig.c164 return (timer_max); in sysconfig()