Home
last modified time | relevance | path

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

/freebsd/contrib/libbegemot/
H A Drpoll.c193 static u_int tims_alloc; /* how many are allocated */ variable
375 for(p = tims; p < &tims[tims_alloc]; p++) in poll_start_utimer()
379 if(p == &tims[tims_alloc]) { in poll_start_utimer()
380 if(tims_alloc == tims_used) { in poll_start_utimer()
381 size_t newsize = tims_alloc + POLL_REG_GROW; in poll_start_utimer()
383 for(p = &tims[tims_alloc]; p < &tims[newsize]; p++) in poll_start_utimer()
385 p = &tims[tims_alloc]; in poll_start_utimer()
386 tims_alloc = newsize; in poll_start_utimer()
472 for(i = 0; i < tims_alloc; i++) in sort_timers()