C語言多線程目錄操作

#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;

}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章