我正在尝试运行一个程序,其中一个线程从标准输入中获取数据,然后另一个线程在标准输出上提供数据,没什么太复杂的,但是当我使用/.filename < test.in > test.out运行我的程序时什么都不做。当我使用gcc -pthread filename.c -o filename -W -Wall 编译它时,似乎没有错误或警告。有人可以解释吗?同样在文件 test.out 中没有显示任何内容,而在 test.in 中是一个简单的句子。这是程序
#define V 300
pthread_cond_t cond;
pthread_mutex_t mutex;
char a[300];
int p = 0;
int w = 0;
void *thread1() {
while(1){
pthread_mutex_lock(&mutex);
printf("thread1");
while(p >0){
pthread_cond_wait(&cond, &mutex);
}
p = fread(a, sizeof(char), V ,stdin);
if(p == 0){
pthread_exit(NULL);
}
if(p <= V){
pthread_cond_signal(&cond);
}
pthread_mutex_unlock(&mutex);
}
}
void *thread2() {
while(1){
pthread_mutex_lock(&mutex);
printf("thread2");
while(w >0){
pthread_cond_wait(&cond, &mutex);
}
w = fwrite(a, sizeof(char),p, stdout);
if(w == 0){
pthread_exit(NULL);
}
if(w <= V ){
pthread_cond_signal(&cond);
}
pthread_mutex_unlock(&mutex);
}
}
int main (void) {
printf("main/n");
fflush(stdout);
pthread_t t1, t2;
pthread_mutex_init(&mutex, NULL);
pthread_cond_init (&cond, NULL);
pthread_create(&t1, NULL, vlakno1, NULL);
pthread_create(&t2, NULL, vlakno2, NULL);
pthread_join(t1, NULL);
pthread_join(t2, NULL);
pthread_mutex_destroy(&mutex);
pthread_cond_destroy(&cond);
return 0;
}