思维导图
、
在一个进程中,创建一个子线程。
主线程负责:向文件中写入数据
子线程负责:从文件中读取数据
要求使用线程的同步逻辑,保证一定在主线程向文件中写入数据成功之后,子线程才开始运行,去读取文件中的数据
代码:
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <pthread.h>
#include <semaphore.h>
#include <wait.h>
#include <signal.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <semaphore.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/un.h>
/*
在一个进程中,创建一个子线程。
主线程负责:向文件中写入数据
子线程负责:从文件中读取数据
要求使用线程的同步逻辑,在主线程向文件中写入数据成功之后,子线程才开始运行,去读取文件中的数据
*/
int flag = 0;
void* run(void* arg){
while(1)
{
while(1){
if(flag == 1){break;} //当flag==1时,子线程可向下运行
}
int rf=open(arg,O_RDONLY); //只读模式打开文件
if(rf == -1)
{
perror("ropen");
return NULL;
}
char buf[90]={0};
int retr=read(rf,buf,90);
if(retr == -1)
{
perror("read");
return NULL;
}
else
{
printf("文件内容为:%s\n",buf);
flag = 0; //让主线程运行
}
sleep(1);
}
pthread_t id=pthread_self(); //获取子线程id号
pthread_cancel(id); //取消子线程
pthread_testcancel(); //立即取消线程
}
int main(int argc, const char *argv[])
{
pthread_t id;
int retval=pthread_create(&id,0,run,(void*)argv[1]);
if(retval != 0)
{
perror("pthread_create");
return 1;
}
while(1)
{
while(1)
{
if(flag==0){break;} //当flag==0,父线程可向下运行
}
int wf=open(argv[1],O_WRONLY | O_CREAT | O_TRUNC,0666);
if(wf == -1)
{
perror("wopen");
return 1;
}
char buf[90]={0}; //创建缓存字符数组
printf("请输入信息:");
scanf("%s",buf); //输入信息
while(getchar() != '\n'); //阻塞
int len=strlen(buf); //计算输入的字符串长度
int retw=write(wf,buf,len); //将字符串输入文件中
if(retw == -1)
{
perror("write");
return 1;
}
else
{
flag = 1; //修改flag值,让子线程可运行
}
sleep(1);
}
return 0;
}