我如何使用 freopen() 重定向 stdout &多线程应用程序中线程虎钳日志文件中的stdin?
在多线程中的扩展问题应用程序如何重定向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于所有资源(包括文件)在线程应用程序中共享,因此在一个线程中更改 stdin 或 stdout 会更改所有线程的资源。如果您只想在单个线程中更改它,请使用
fork
来创建一个新进程。Since all resources are shared in a threaded application, including files, changing
stdin
orstdout
in one thread changes them for all threads. If you want to change it in just a single thread then usefork
to create a new process instead.