Home
last modified time | relevance | path

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

/freebsd/contrib/ntp/libntp/
H A Dwork_thread.c236 if (slots_used >= c->responses_alloc) { in ensure_workresp_empty_slot()
237 new_alloc = c->responses_alloc + RESPONSES_ALLOC_INC; in ensure_workresp_empty_slot()
239 for (sidx = c->responses_alloc; sidx < new_alloc; ++sidx) in ensure_workresp_empty_slot()
242 c->head_response = c->responses_alloc; in ensure_workresp_empty_slot()
243 c->responses_alloc = new_alloc; in ensure_workresp_empty_slot()
245 INSIST(NULL == c->responses[c->head_response % c->responses_alloc]); in ensure_workresp_empty_slot()
369 c->responses[qhead % c->responses_alloc] = resp; in send_blocking_resp_internal()
459 slot = qtail % c->responses_alloc; in receive_blocking_resp_internal()
/freebsd/contrib/ntp/include/
H A Dntp_worker.h107 volatile size_t responses_alloc; member