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

/freebsd-10.2-release/sys/kern/
H A Dkern_thread.c81 #define TID_BUFFER_SIZE 1024 macro
85 static lwpid_t tid_buffer[TID_BUFFER_SIZE];
107 tid_head = (tid_head + 1) % TID_BUFFER_SIZE;
118 if ((tid_tail + 1) % TID_BUFFER_SIZE == tid_head) {
120 tid_head = (tid_head + 1) % TID_BUFFER_SIZE;
123 tid_tail = (tid_tail + 1) % TID_BUFFER_SIZE;

Completed in 24 milliseconds