作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 pthread_create
创建一个线程。
在我使用的线程函数中
fprintf(stdout, "text\n");
但这不会向控制台输出任何内容。 printf
也有同样的问题。我也试过刷新 stdout 缓冲区但没有成功。所以问题是如何从线程向控制台打印任何内容?
更新:
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;
}
main 中的代码工作正常。但是线程没有输出任何东西
最佳答案
您缺少对 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;
}
关于c - 为什么 fprintf 在线程中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15932804/
我是一名优秀的程序员,十分优秀!