HomeSort by relevance Sort by last modified time
    Searched defs:cond1 (Results 1 - 3 of 3) sorted by null

  /system/extras/tests/bionic/libc/bionic/
test_pthread_cond.c 8 static pthread_cond_t cond1; variable
16 printf("1 waiting for cond1\n");
18 pthread_cond_wait(&cond1, &test_lock );
41 printf("3 waiting for cond1\n");
43 pthread_cond_wait(&cond1, &test_lock );
61 printf("4 broadcast cond1\n");
62 pthread_cond_broadcast(&cond1);
71 pthread_cond_init(&cond1, NULL);