如果您 真的 必须这样做…
首先,您需要创建2
pthread_key_ts,一个用于
stdout,一个用于
stderr。这些可以使用创建
pthread_key_create,并且必须可以从所有线程访问。我们称它们为
stdout_key和
stderr_key。
创建线程时:
FILE *err = ..., *out = ...;pthread_setspecific(stdout_key, out);pthread_setspecific(stderr_key, err);
然后在您的头文件中:
#define stdout (FILE*)pthread_getspecific(stdout_key)#define stderr (FILE*)pthread_getspecific(stderr_key)#define printf(...) fprintf(stdout, ##__VA_ARGS__)
然后只需使用:
fprintf(stderr, "hellon");fprintf(stdout, "hellon");printf("hellon");
我不推荐这种方法。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)