多线程目录在C中工作

时间:2013-05-12 00:47:58

标签: c pthreads

我在创建一个C程序时遇到了困难,该程序会将目录中的所有大小相加,然后递归进入任何其他目录来执行相同的操作。

不幸的是,它位于当前目录上方的目录上,并一直反复获取该目录的文件,直到出现seg错误。有什么想法吗?

这是我的代码到目前为止:首先是线程函数,然后是main

中的相应部分
void *directorywork(void *path) 
{

 /*some declarations here*/

 size_t numbers_len = sizeof(statbuf.st_size)/sizeof(int);

 dp = opendir(path);
 chdir(path);

 while((dirnext = readdir(dp)) != NULL)
 {  
   stat(dirnext->d_name,&statbuf);

   // passing over directories above the requested directory  

   if(strcmp(dirnext->d_name, ".") == 0)
   { 
     continue;
   }

   if(strcmp(dirname->d_name, "..") == 0) 
   {  
     continue;
   }

   if(!S_ISDIR(statbuf.st_mode))
   {
     printf("File %s is %d bytes\n", dirnext->d_name, (int)statbuf.st_size);
     pthread_mutex_lock(&crit);
     fsum = sum + (int)statbuf.st_size;
     pthread_mutex_unlock(&crit); 
   }
   else
   {
     pthread_create(&tids[i++], NULL, directorywork, (void*)path);
     i++;
   }
 } 
} 

main()中的代码:

int main(int argc, char *argv[]) {

    /*some string input parsing*/

    int k; 

    psize(NULL); 

    for (k = 0; k < i; k++)    
    {
        pthread_join(tids[k], NULL);    
    }

    printf("Total sum of all directories is: %d\n\n", fsum);

    free(firstpath); 
    free(path);     

    return 0;
}

1 个答案:

答案 0 :(得分:4)

您的设计的主要问题是工作目录是进程的属性,而不是单个线程。因此,一个线程中的chdir会扰乱所有其他线程。要解决此问题,您需要从每个组件构建相对或绝对路径名,或使用POSIX 2008中添加的新“at”接口(openat等)。