#include <stdio.h>
#include <pthread.h>
#include <stdlib.h>
#include <sys/types.h>
#include <dirent.h>
成都创新互联2013年至今,是专业互联网技术服务公司,拥有项目成都做网站、成都网站设计网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元绥化做网站,已为上家服务,为绥化各地企业和个人服务,联系电话:18980820575
#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语言多线程目录操作
分享地址:https://www.cdcxhl.com/article18/gcdggp.html
成都网站建设公司_创新互联,为您提供Google、网站策划、品牌网站制作、电子商务、网站设计公司、小程序开发
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联