我如何使用 freopen() 重定向 stdout &多线程应用程序中线程虎钳日志文件中的stdin?

发布于 2024-12-11 16:49:54 字数 439 浏览 0 评论 0原文

在多线程中的扩展问题应用程序如何重定向 stderr & stdout 在每个线程的单独文件中?

看看我如何将每个线程中生成的所有 printf 和错误/警告消息保留在不同的日志文件中。

FILE * freopen ( const char * filename, const char * mode, FILE * stream ); 

freopen 函数将第三个参数流重定向到第一个参数文件名。所以现在我想问你在多线程应用程序中我可以在 freopen() 的帮助下做到这一点...怎么样?

Extened question from In multi thread application how can i redirect stderr & stdout in separate file as per thread?

see some how i want to keep all printf and error/warning message produced in each thread in different log-file.

FILE * freopen ( const char * filename, const char * mode, FILE * stream ); 

freopen function redirects 3rd argument stream into 1st argument file name. So now i want to ask you in multi-theread application can i do that with help of freopen()... how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离线来电— 2024-12-18 16:49:54

由于所有资源(包括文件)在线程应用程序中共享,因此在一个线程中更改 stdin 或 stdout 会更改所有线程的资源。如果您只想在单个线程中更改它,请使用fork来创建一个新进程。

Since all resources are shared in a threaded application, including files, changing stdin or stdout in one thread changes them for all threads. If you want to change it in just a single thread then use fork to create a new process instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文