当前位置:  技术问答>linux和unix

多线程,加过锁,依然fopen导致oops?

    来源: 互联网  发布时间:2016-04-15

    本文导语:  #include  #include  #include  #include  #include  #include  #include  #include  #include  #include #define FM_SIZE 256*1024 /*128k Bytes  */ #undef DEBUG_FM pthread_mutex_t mutex_fm_bin; FILE *fp_fm; void init_fm_mem() { FILE *outfile; /* output-file pointer */...


#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include
#define FM_SIZE 256*1024 /*128k Bytes  */

#undef DEBUG_FM

pthread_mutex_t mutex_fm_bin;

FILE *fp_fm;
void init_fm_mem()
{
FILE *outfile; /* output-file pointer */
char *outfile_file_name = "/config/fm.bin"; /* output-file name    */
char *p;

int ret;
ret=pthread_mutex_init(&mutex_fm_bin,NULL);
if(ret!=0)
{
printf ( "pthread mutex_fm_bin init failedn"  );
}

int fd=0;
fd=open("/config/fm.bin",O_RDONLY);
if(fd>0)
{
close(fd);
return ;
}
printf("create /config/fm.binn");
outfile = fopen( outfile_file_name, "w" );
if ( outfile == NULL )
{
fprintf ( stderr, "couldn't open file '%s'; n",
outfile_file_name );
}

p=(char *)malloc(FM_SIZE);
if(p!=NULL)
{
fwrite(p,1,FM_SIZE,outfile);
free(p);
}
else
{
printf("malloc fm memery errorn");
}

if( fclose(outfile) == EOF ) /* close output file   */
{
fprintf ( stderr, "couldn't close file '%s'; n",
outfile_file_name );
}
return;
}

void clean_fm_mem()
{
return;
}

void fm_write(int offset,unsigned char *nData,int len) 
{
FILE *outfile; /* output-file pointer */
char *outfile_file_name = "/config/fm.bin"; /* output-file name    */

pthread_mutex_lock(&mutex_fm_bin);
outfile = fopen( outfile_file_name, "rb+" );
if ( outfile == NULL )
{
fprintf ( stderr, "couldn't open file '%s'; n",
outfile_file_name );
return ;
}

fseek(outfile,offset,SEEK_SET);
if(nData != NULL)
fwrite(nData,len,sizeof(unsigned char),outfile);
else
printf ( "fm_write nData is NULL in FILE %s LINE %dn",__FILE__,__LINE__  );
fflush(outfile);

#ifdef DEBUG_FM
printf ( "write fm **********(%d)n",len  );
printf ( "%mn"  );
#endif

if( fclose(outfile) == EOF ) /* close output file   */
{
fprintf ( stderr, "couldn't close file '%s'; %sn",
outfile_file_name  );
return  ;
}
pthread_mutex_unlock(&mutex_fm_bin);
}

void fm_read(int offset,unsigned char *nData,int len)
{

FILE *infile; /* input-file pointer */
char *infile_file_name = "/config/fm.bin"; /* input-file name    */

pthread_mutex_lock(&mutex_fm_bin);
infile = fopen( infile_file_name, "rb+" );
if ( infile == NULL )
{
fprintf ( stderr, "couldn't open file '%s'; n",
infile_file_name );
return ;
}
fseek(infile,offset,SEEK_SET);
if(nData != NULL)
fread(nData,len,sizeof(unsigned char),infile);
else
printf ( "fm_read buf is NULL in FILE %s LINE %dn",__FILE__,__LINE__ );
fflush(infile);

#ifdef DEBUG_FM
// printf("read size is %dn",len);
printf ( "read fm #########(%d)n",len  );
printf ( "%mn"  );
#endif

if( fclose(infile) == EOF ) /* close input file   */
{
fprintf ( stderr, "couldn't close file '%s'; n",
infile_file_name );
return ;
}
pthread_mutex_unlock(&mutex_fm_bin);
}



我是内核2.6.13 ,at91rm9200,jffs2文件系统上。/config是mount的jffs2文件系统。
不知道问什么。会在fopen的时候oops
ret_fast_syscall
sys_open
filp_open
open_namei
path_lookup
link_path_walk
__link_path_walk
do_lookup
__follow_mount

有什么关键点,我printk一下,哪些数据比较重要会造成oops。给点意见。

|


    if( fclose(infile) == EOF )            /* close input file   */
    {
        fprintf ( stderr, "couldn't close file '%s'; n",
            infile_file_name );
        return ;
    }



上面的代码被多线程序调用,如果return退出函数,而你的线程锁并没有释放,这样会dump掉。

|
这个时候就会发现函数只有一个退出点的重要了。

你的代码,用do ... while(0)来做,return改为break,可以避免出现这样的问题。

|
这里用access不是更好吗?即使这样用,判断也应该用if(fd>=0)。

把/config换成本地文件系统的目录看看。

|
你的同一个文件open之后又fopen,这会不会有问题?

|
不过,,,,
怎么open是read的,fopen是write的??
    fd=open("/config/fm.bin",O_RDONLY);
    outfile    = fopen( outfile_file_name, "w" );

|
有一点不太明白的是,既然已经用了线程互斥锁,为什么不对所有的读写操作都加锁。

还有,频繁的fopen和fclose似乎没有必要。把fopen和fclose拿到共通处理里面是不是好一点?

clean_fm_mem中fclose,
init_fm_mem中fopen。


另外,pthread_mutex_destroy()没有使用?
似乎应该在clean_fm_mem中使用pthread_mutex_destroy吧?


|
core dump了可以把core文件用gdb跟一下
建议你先把文件的问题改进一下,排除之后再试试,可以用access

|
你的锁,你的代码处理...
最好这些只是你在论坛上随手写的

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Java中多线程相关类Thread介绍
  • 一个进程创建了两个线程,如何使得当任何一个线程(比如线程a)结束时,同时也结束线程b,也就是使两个线程一起死掉,怎么办呢?
  • c#多线程更新窗口(winform)GUI的数据
  • java 线程,对当前线程(非主线程)调用sleep,为什么主线程(窗口)也没反应了
  • Windows和Linux下C++类成员方法作为线程函数方法介绍
  • 如何实现一个线程组内多线程的非同不执行,即一个线程执行完毕后再执行下一个线程???
  • c++的boost库多线程(Thread)编程(线程操作,互斥体mutex,条件变量)详解
  • 请问:进程创建的线程是怎样运行的啊,线程的处理函数运行完了,线程就退出了吗?
  • Linux下GCC内置原子操作函数(多线程资源访问)介绍
  • 关于线程的问题,什么样的线程不是active线程?
  • 请问Linux核心支持多线程吗?开发库有线程库吗?线程好用吗?(稳定?)
  • 请问,在一个进程中创建多线程时如何能避免不同的线程获得同一个线程标识
  • 我的一个多线程服务里, 总是有一个线程莫名其妙的变成僵尸线程。
  • 能否通过线程id控制线程的状态?或是观察到线程的状态?
  • 如何在一个线程中启动另外一个线程,然后本线程就退出?
  • 我要设置一个线程的优先级, 这个属性结构并没有线程的id,它怎么知道是设置哪个线程呢?
  • 请问在java多线程中,是只有run(){}内的代码运行在一个新线程下呢?还是这个类中的代码都运行在一个新线程下?
  • gcc链接的库,分不分单线程版本的和多线程版本的?
  • 内核栈~ 内核线程 ~用户线程 之间关系 问题
  • 子线程的数据如何返回给主线程?
  • 如果父线程死掉 那么子线程会不会死掉呢


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3