- 论坛徽章:
- 0
|
我在Linux下想用两个线程同时对一个日志文件进行写操作;
在程序中打开/关闭文件,多个线程写并且无互斥操作;
是否需要对进行互斥操作;
我看见网上有些程序写日志并没有对写文件进行互斥操作;
老是觉的不踏实,但用下面的写法运行确实没有发现断行现象
我刚在linux写程序,请各位老师给个指导,
你们都是如何写日志呢,怎样才能不占用太多的时间?
大致情况如下
#include <pthread.h>
#include <unistd.h>
#include <stdio.h>
#include <fcntl.h>
FILE *g_pf = NULL;
void * thr_fn (void *arg)
{
int i;
for (i=0; i<10000; ++i)
fprintf (g_pf, "thread %u is writing.\n", pthread_self());//这里会不会被中断?
return NULL;
}
int main ()
{
pthread_t tid1, tid2;
g_pf = fopen ("./log.file", "w" );
setvbuf (g_pf, NULL, _IONBF, 0);// 是不是设置空缓存就可以不用设置互斥操作了?
pthread_create (&tid1, NULL, thr_fn, NULL);
pthread_create (&tid2, NULL, thr_fn, NULL);
printf ("thread->%u\nthread-->%u\n", tid1, tid2);
// 写出来的log.file文件并没有发现断行的现象,
// 是不是这样写真的没问题
getchar ();
fclose (g_pf);
return 0;
} |
|