linux下C多线程编程,为每个文件创建一个线程,转换内容大小写

不知道为什么,文件内容没改变#define_XOPEN_SOURCE700#include<pthread.h>#include<stdio.h>#include<std... 不知道为什么,文件内容没改变
#define _XOPEN_SOURCE 700
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

void* thr_convert(void* arg)
{
FILE* fp1, *fp2;
int c = 1;
fp1= fopen ((char*)arg, "r");
fp2= fopen ((char*)arg, "r+");
if ((fp1== NULL) || (fp2== NULL)) {
perror ("fopen");
exit (1);
}

while (c !=EOF) {
c=fgetc(fp1);
if (c!=EOF)
fputc(toupper(c),fp2);
}

fclose (fp1);
fclose (fp2);

return ((void*)0);
}

int main(int argc, char ** argv)
{
pthread_t tid;
int i;
for(i=1; i<argc; i++)
{
if(pthread_create(&tid, NULL, thr_convert, (void*)argv[i]) != 0)
{
perror("pthread_create");
exit(1);
}
}

return EXIT_SUCCESS;
}
展开
 我来答
转转耳朵
推荐于2017-12-16 · TA获得超过735个赞
知道小有建树答主
回答量:167
采纳率:0%
帮助的人:174万
展开全部
你main里创建完线程就直接退出了,线程还没来的及干活就结束当然不行了。需要加pthread_join等待,像下面这样:
int main(int argc, char ** argv)
{
pthread_t tid[10];
int i;
for(i=1; i<argc; i++)
{
if(pthread_create(&tid[i], NULL, thr_convert, (void*)argv[i]) != 0)
{
perror("pthread_create");
exit(1);
}
}
for(i=1; i<argc; i++)
pthread_join(tid[i],NULL);

return EXIT_SUCCESS;
}
兴高采烈shew
2014-10-12 · TA获得超过102个赞
知道小有建树答主
回答量:297
采纳率:100%
帮助的人:149万
展开全部
这个程序可以反映出这个设备可以被并发控制
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式