IO进程线程8月27日

2024-08-28 04:36
文章标签 线程 进程 io 27

本文主要是介绍IO进程线程8月27日,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1,思维导图

2,使用两个线程分别复制文件的上下两部分到同一个文件

#include<myhead.h>
sem_t fastsem;
//pthread_mutex_t fastmutex;
void *capy_up(void *c)
{
//	pthread_mutex_lock(&fastmutex);int len=*(int *)c;int fp1=open("./1.txt",O_RDONLY);int fp2=open("./2.txt",O_WRONLY);char str[5];int read_cs;int count=0;while(count<len/2&&(read_cs=read(fp1,str,sizeof(str)))>0){count+=read_cs;if(count>len/2){write(fp2,str,(read_cs-(count-len/2)));break;}write(fp2,str,read_cs);}close(fp1);close(fp2);sem_post(&fastsem);
//	pthread_mutex_unlock(&fastmutex);pthread_exit(NULL);
}
void *capy_dn(void *c)
{
//	pthread_mutex_lock(&fastmutex);sem_wait(&fastsem);int len=*(int *)c;int fp3=open("./1.txt",O_RDONLY);int fp4=open("./2.txt",O_WRONLY|O_APPEND);lseek(fp3,len/2,SEEK_SET);char str[5];int read_cs;int count=0;while((read_cs=read(fp3,str,sizeof(str)))>0){write(fp4,str,read_cs);}close(fp3);close(fp4);
//	pthread_mutex_unlock(&fastmutex);sem_post(&fastsem);pthread_exit(NULL);
}int main(int argc, const char *argv[])
{
//	pthread_mutex_init(&fastmutex,NULL);sem_init(&fastsem,0,0);int fp1=open("./1.txt",O_RDONLY);int fp2=open("./2.txt",O_WRONLY|O_CREAT|O_TRUNC,0664);int len=lseek(fp1,0,SEEK_END);close(fp1);close(fp2);pthread_t tid1;int k1=pthread_create(&tid1,NULL,capy_up,&len);pthread_t tid2;int k2=pthread_create(&tid2,NULL,capy_dn,&len);if(k1!=0||k2!=0){perror("ptcreat");return -1;}
//	pthread_mutex_destroy(&fastmutex);sem_destroy(&fastsem);pthread_join(tid1,NULL);pthread_join(tid2,NULL);return 0;
}

3,使用四个线程通过无名信号量实现 “春“ ”夏“ ”秋“ ”冬“ 循环

#include<myhead.h>
sem_t sem1,sem2,sem3,sem4;
void *fun1(void *c)
{while(1){sem_wait(&sem4);sleep(1);printf("春\t");fflush(stdout);sem_post(&sem3);}pthread_exit(NULL);
}
void *fun2(void *x)
{while(1){sem_wait(&sem3);sleep(1);printf("夏\t");fflush(stdout);sem_post(&sem2);}pthread_exit(NULL);
}
void *fun3(void *q)
{while(1){sem_wait(&sem2);sleep(1);printf("秋\t");fflush(stdout);sem_post(&sem1);}pthread_exit(NULL);
}
void *fun4(void *d)
{while(1){sem_wait(&sem1);sleep(1);printf("冬\t");fflush(stdout);sem_post(&sem4);}pthread_exit(NULL);
}
int main(int argc, const char *argv[])
{sem_init(&sem1,0,0);sem_init(&sem2,0,0);sem_init(&sem3,0,0);sem_init(&sem4,0,1);pthread_t tid1,tid2,tid3,tid4;if(pthread_create(&tid1,NULL,fun1,NULL)!=0){perror("ptcreat1");return -1;}if(pthread_create(&tid2,NULL,fun2,NULL)!=0){perror("ptcreat1");return -1;}if(pthread_create(&tid3,NULL,fun3,NULL)!=0){perror("ptcreat1");return -1;}if(pthread_create(&tid4,NULL,fun4,NULL)!=0){perror("ptcreat1");return -1;}sem_destroy(&sem1);sem_destroy(&sem2);sem_destroy(&sem3);sem_destroy(&sem4);pthread_join(tid1,NULL);pthread_join(tid2,NULL);pthread_join(tid3,NULL);pthread_join(tid4,NULL);return 0;
}

这篇关于IO进程线程8月27日的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1113746

相关文章

[Linux]:进程(下)

✨✨ 欢迎大家来到贝蒂大讲堂✨✨ 🎈🎈养成好习惯,先赞后看哦~🎈🎈 所属专栏:Linux学习 贝蒂的主页:Betty’s blog 1. 进程终止 1.1 进程退出的场景 进程退出只有以下三种情况: 代码运行完毕,结果正确。代码运行完毕,结果不正确。代码异常终止(进程崩溃)。 1.2 进程退出码 在编程中,我们通常认为main函数是代码的入口,但实际上它只是用户级

线程的四种操作

所属专栏:Java学习        1. 线程的开启 start和run的区别: run:描述了线程要执行的任务,也可以称为线程的入口 start:调用系统函数,真正的在系统内核中创建线程(创建PCB,加入到链表中),此处的start会根据不同的系统,分别调用不同的api,创建好之后的线程,再单独去执行run(所以说,start的本质是调用系统api,系统的api

Java IO 操作——个人理解

之前一直Java的IO操作一知半解。今天看到一个便文章觉得很有道理( 原文章),记录一下。 首先,理解Java的IO操作到底操作的什么内容,过程又是怎么样子。          数据来源的操作: 来源有文件,网络数据。使用File类和Sockets等。这里操作的是数据本身,1,0结构。    File file = new File("path");   字

java 进程 返回值

实现 Callable 接口 与 Runnable 相比,Callable 可以有返回值,返回值通过 FutureTask 进行封装。 public class MyCallable implements Callable<Integer> {public Integer call() {return 123;}} public static void main(String[] args

springboot体会BIO(阻塞式IO)

使用springboot体会阻塞式IO 大致的思路为: 创建一个socket服务端,监听socket通道,并打印出socket通道中的内容。 创建两个socket客户端,向socket服务端写入消息。 1.创建服务端 public class RedisServer {public static void main(String[] args) throws IOException {

C#关闭指定时间段的Excel进程的方法

private DateTime beforeTime;            //Excel启动之前时间          private DateTime afterTime;               //Excel启动之后时间          //举例          beforeTime = DateTime.Now;          Excel.Applicat

linux中使用rust语言在不同进程之间通信

第一种:使用mmap映射相同文件 fn main() {let pid = std::process::id();println!(

java线程深度解析(六)——线程池技术

http://blog.csdn.net/Daybreak1209/article/details/51382604 一种最为简单的线程创建和回收的方法: [html]  view plain copy new Thread(new Runnable(){                @Override               public voi

java线程深度解析(五)——并发模型(生产者-消费者)

http://blog.csdn.net/Daybreak1209/article/details/51378055 三、生产者-消费者模式     在经典的多线程模式中,生产者-消费者为多线程间协作提供了良好的解决方案。基本原理是两类线程,即若干个生产者和若干个消费者,生产者负责提交用户请求任务(到内存缓冲区),消费者线程负责处理任务(从内存缓冲区中取任务进行处理),两类线程之

java线程深度解析(四)——并发模型(Master-Worker)

http://blog.csdn.net/daybreak1209/article/details/51372929 二、Master-worker ——分而治之      Master-worker常用的并行模式之一,核心思想是由两个进程协作工作,master负责接收和分配任务,worker负责处理任务,并把处理结果返回给Master进程,由Master进行汇总,返回给客