/* * Copyright (c) 2002, Intel Corporation. All rights reserved. * Created by: bing.wei.liu REMOVE-THIS AT intel DOT com * This file is licensed under the GPL license. For the full content * of this license, see the COPYING file at the top level of this * source tree. * Test that pthread_cond_broadcast() * shall unblock all threads currently blocked on the specified condition * variable cond. */ #define _XOPEN_SOURCE 600 #include #include #include #include #include "posixtest.h" #define THREAD_NUM 3 struct testdata { pthread_mutex_t mutex; pthread_cond_t cond; } td; int start_num = 0; int waken_num = 0; void *thr_func(void *arg) { int rc; pthread_t self = pthread_self(); if (pthread_mutex_lock(&td.mutex) != 0) { fprintf(stderr,"[Thread 0x%p] failed to acquire the mutex\n", (void*)self); exit(PTS_UNRESOLVED); } start_num ++; fprintf(stderr,"[Thread 0x%p] started and locked the mutex\n", (void*)self); fprintf(stderr,"[Thread 0x%p] is waiting for the cond\n", (void*)self); rc = pthread_cond_wait(&td.cond, &td.mutex); if(rc != 0) { fprintf(stderr,"pthread_cond_wait return %d\n", rc); exit(PTS_UNRESOLVED); } waken_num ++; fprintf(stderr,"[Thread 0x%p] was wakened and acquired the mutex again\n", (void*)self); if (pthread_mutex_unlock(&td.mutex) != 0) { fprintf(stderr,"[Thread 0x%p] failed to release the mutex\n", (void*)self); exit(PTS_UNRESOLVED); } fprintf(stderr,"[Thread 0x%p] released the mutex\n", (void*)self); return NULL; } int main() { int i, rc; pthread_t thread[THREAD_NUM]; if (pthread_mutex_init(&td.mutex, NULL) != 0) { fprintf(stderr,"Fail to initialize mutex\n"); return PTS_UNRESOLVED; } if (pthread_cond_init(&td.cond, NULL) != 0) { fprintf(stderr,"Fail to initialize cond\n"); return PTS_UNRESOLVED; } for (i=0; i