我正在使用pthread_create
创建一个帖子。
在线程函数中我使用
fprintf(stdout, "text\n");
但这不会向控制台输出任何内容。问题与printf
相同。
我也尝试刷新stdout缓冲区而没有任何成功。
所以问题是如何从线程中将任何东西打印到控制台?
UPD:
void *listen_t(void *arg){
fprintf(stdout, "test\n");
fflush(stdout);
}
int main(int argc, char **argv){
pthread_t tid;
int err;
err = pthread_create(&tid, NULL, &listen_t, &thread_params);
if (err != 0){
printf("\ncan't create thread :[%s]", strerror(err));
}
else{
printf("\n Thread created successfully\n");
}
return 0;
}
主要代码很好。但是线程没有输出任何东西
答案 0 :(得分:4)
您错过了pthread_join
的调用:如果主程序在printf
的输出到达控制台之前退出,则您看不到任何打印。
在您的示例中添加pthread_join(tid, NULL);
会修复输出:
#include <pthread.h>
#include <stdio.h>
void *listen_t(void *arg){
fprintf(stdout, "test\n");
fflush(stdout);
}
int main(int argc, char **argv){
pthread_t tid;
int err;
err = pthread_create(&tid, NULL, &listen_t, NULL);
if (err != 0){
printf("\ncan't create thread :[%d]", strerror(err));
}
else{
printf("\n Thread created successfully\n");
}
pthread_join(tid, NULL);
return 0;
}