HomeSort by relevance Sort by last modified time
    Searched refs:join_count (Results 1 - 2 of 2) sorted by null

  /bionic/libc/bionic/
pthread_internal.h 42 int join_count; member in struct:pthread_internal_t
pthread.c 228 thread->join_count = 0;
580 /* the join_count field is used to store the number of threads waiting for
594 if (thread->join_count > 0) {
597 thread->join_count = -1; /* zombie thread */
632 * if the 'join_count' is negative, this is a 'zombie' thread that
637 count = thread->join_count;
639 thread->join_count += 1;
641 count = --thread->join_count;
    [all...]

Completed in 499 milliseconds