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

/freebsd-10.3-release/sys/kern/
H A Dkern_thread.c83 #define TID_BUFFER_SIZE 1024 macro
87 static lwpid_t tid_buffer[TID_BUFFER_SIZE];
109 tid_head = (tid_head + 1) % TID_BUFFER_SIZE;
120 if ((tid_tail + 1) % TID_BUFFER_SIZE == tid_head) {
122 tid_head = (tid_head + 1) % TID_BUFFER_SIZE;
125 tid_tail = (tid_tail + 1) % TID_BUFFER_SIZE;

Completed in 46 milliseconds