Home | History | Annotate | Download | only in pthread_cond_broadcast

Lines Matching refs:fprintf

37 		fprintf(stderr, "[Thread 0x%p] failed to acquire the mutex\n",
42 fprintf(stderr, "[Thread 0x%p] started and locked the mutex\n",
45 fprintf(stderr, "[Thread 0x%p] is waiting for the cond\n",
49 fprintf(stderr, "pthread_cond_wait return %d\n", rc);
53 fprintf(stderr, "[Thread 0x%p] was wakened and acquired the mutex "
57 fprintf(stderr, "[Thread 0x%p] failed to release the mutex\n",
61 fprintf(stderr, "[Thread 0x%p] released the mutex\n", (void *)self);
71 fprintf(stderr, "Fail to initialize mutex\n");
75 fprintf(stderr, "Fail to initialize cond\n");
81 fprintf(stderr, "Fail to create thread[%d]\n", i);
94 fprintf(stderr, "Main: Fail to acquire mutex\n");
98 fprintf(stderr, "Main: Fail to release mutex\n");
103 fprintf(stderr, "[Main thread] broadcast the condition\n");
106 fprintf(stderr, "[Main thread] failed to broadcast the "
112 fprintf(stderr, "[Main thread] Not all waiters were wakened\n");
119 fprintf(stderr, "[Main thread] all waiters were wakened\n");
124 fprintf(stderr, "Fail to join thread[%d]\n", i);