码迷,mamicode.com
首页 > 编程语言 > 详细

C语言多线程目录操作

时间:2018-12-05 18:39:11      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:types.h   creat   closed   amp   ror   res   ==   %s   return   

#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>
#include <sys/types.h>
#include <dirent.h>

#define NUM 2

void thread(void arg)
{
int i;
DIR
dir = NULL;
struct dirent ptr = (struct dirent )calloc(1, sizeof(struct dirent));
struct dirent *result = NULL;

for (i=0;i<1;i++) {
    printf ("in thread:%d\n", (int)arg);
    dir = opendir("/root/tmp");
    if (!dir) {
        printf("opendir failed\n");
    }

    while ((readdir_r(dir, ptr, &result)==0) && (result != NULL)) {
        printf("name:%s  ", result->d_name);
    }
    printf ("\n");
    closedir(dir);
    sleep (1);
}

}

int main(void)
{
pthread_t id[NUM];
int i,ret;

for (i=0;i<NUM;i++) {
    ret = pthread_create(&id[i], NULL, (void *)thread, (void *)i);
    if (ret) {
        printf("create pthread error\n");
        return 1;
    }
}

for (i=0;i<NUM;i++) {
    pthread_detach(id[i]);
}

while (1);

return 0;

}

C语言多线程目录操作

标签:types.h   creat   closed   amp   ror   res   ==   %s   return   

原文地址:http://blog.51cto.com/13603157/2326580

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!