Searched refs:tid_head (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.2-release/sys/kern/
H A Dkern_thread.c86 static int tid_head, tid_tail; variable
102 if (tid_head == tid_tail) {
106 tid = tid_buffer[tid_head];
107 tid_head = (tid_head + 1) % TID_BUFFER_SIZE;
118 if ((tid_tail + 1) % TID_BUFFER_SIZE == tid_head) {
119 tmp_tid = tid_buffer[tid_head];
120 tid_head = (tid_head + 1) % TID_BUFFER_SIZE;
/freebsd-10.2-release/sys/dev/aic7xxx/
H A Daic79xx.c7551 u_int tid_head; local
7584 tid_head = scbid;
7587 action, &tid_head, &tid_tail,
7637 && SCBID_IS_NULL(tid_head)
7647 tid_head = ahd_inw(ahd, MK_MESSAGE_SCB);
7652 if (tid_head != scbid)
7653 ahd_stitch_tid_list(ahd, tid_prev, tid_head, tid_next);
7654 if (!SCBID_IS_NULL(tid_head))
7655 tid_prev = tid_head;

Completed in 61 milliseconds