8,2进程和线程作业

本文通过两个示例展示了进程和线程同步的重要性。第一个例子使用标志变量防止数据错乱,但效率较低;第二个例子引入了互斥锁,确保了在多线程环境下对资源的正确访问,避免了数据错乱,提高了程序的执行效率。示例代码分别演示了如何在C语言中使用互斥锁实现文件复制操作,确保线程安全。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

进程代码并不是一口气跑完的,而是通过时间片来分配的。如:两个进程任务,时间片分配固定的时间运行,运行一个,直接跑下一个,而且进程数据是共享的,所以数据容易错乱。

75e1e18830fc4f21ada38813c2064f8d.png

引入flag,作为条件, 可以完成一个线程再完成另一个,不会错乱。但这非常浪费

#include<stdio.h>
#include<pthread.h>
#include<string.h>

char str[] = "1234567";
int flag = 0;

void* callBack_print(void*arg)
{
    while(1)
    {
        if(0 == flag)
        {
            printf("%s\n",str);
            flag = 1;
        }
    }
    pthread_exit(NULL);
}

void* callBack_reaerve(void*arg)
{
    int i = 0;
    char temp = 0;
    while(1)
    {
        if(1 == flag)
        {
            for(i=0; i<strlen(str)/2; i++)
            {
                temp = str[i];
                str[i] = str[strlen(str)-1-i];
                str[strlen(str)-1-i] = temp;
            }
            flag = 0;
        }
    }
    pthread_exit(NULL);
}

int main(int argc, const char *argv[])
{
    pthread_t tid1,tid2;
    if(pthread_create(&tid1,NULL,callBack_print,NULL) != 0)
    {
        perror("pthread_create");
        return -1;
    }
    
    if(pthread_create(&tid2,NULL,callBack_reaerve,NULL) != 0)
    {
        perror("pthread_create");
        return -1;
    }

    pthread_join(tid1,NULL);
    (tid2,NULL);
 
 return 0;
}
 

 

引入互斥锁

9b5d52c8076a4bb785d5122536ac728e.png


#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
 
pthread_mutex_t mutex;
int fd_rd;
int fd_cp;
//A线程
void* callBackA(void* arg)
{
    pthread_detach(pthread_self());
 
    pthread_mutex_lock(&mutex);
    off_t size = lseek(fd_rd, 0, SEEK_END);
    lseek(fd_rd,0,SEEK_SET);
    lseek(fd_cp,0,SEEK_SET);
    int i = 0;
    char c;
    for(i=0; i<size/2; i++)
    {
        if(read(fd_rd, &c, 1) <= 0)
        {
            perror("read");
        }
        write(fd_cp, &c, 1);
    }
    pthread_mutex_unlock(&mutex);
 
    pthread_exit(NULL);
}
 
 
//B线程
void* callBackB(void* arg)
{    
    pthread_detach(pthread_self());
    
    pthread_mutex_lock(&mutex);
    off_t size = lseek(fd_rd, 0, SEEK_END);
    lseek(fd_rd,size/2,SEEK_SET);
    lseek(fd_cp,0,SEEK_END);
    int i = 0;
    char c = 0;
    for(i = 0;i < size/2;i++)
    {
        write(fd_cp,&c,1);
    }
    for(i=size/2; i<size; i++)
    {
        if(read(fd_rd, &c, 1) <= 0)
        {
            perror("read");
        }
        write(fd_cp, &c, 1);
    }
    pthread_mutex_unlock(&mutex);
 
    pthread_exit(NULL);
}
 
int main(int argc, const char *argv[])
{
    printf("准备运行程序\n");
 
    //打开原图片
    fd_rd = open("./1.png",O_RDONLY);
    if(fd_rd < 0)
    {
        perror("open");
        exit(0);
    }
 
    //打开要拷贝到的位置文件
    fd_cp = open("./copy.png",O_RDWR|O_TRUNC|O_CREAT,07770);
    if(fd_cp < 0)
    {
        perror("open");
        exit(0);
    }
    //创建锁    
    pthread_mutex_init(&mutex,NULL);
 
    //创建A线程
    pthread_t tida;
    if(pthread_create(&tida,NULL,callBackA,NULL) != 0)
    {
        perror("pthread_create");
        return -1;
    }
 
    //创建B线程
    pthread_t tidb;
    if(pthread_create(&tidb,NULL,callBackB,NULL) != 0)
    {
        perror("pthread_create");
        return -1;
    }
 
    pthread_join(tida,NULL);
    pthread_join(tidb,NULL);
 
 
    close(fd_rd);
    close(fd_cp);
    //销毁锁
    pthread_mutex_destroy(&mutex);
 
    return 0;
}

 

作业、程序、进程线程是计算机科学中的基本概念,它们之间既有联系又有区别。以下是对它们的详细介绍: ### 作业(Job) 作业是指用户提交给计算机系统执行的一个任务或一组任务。它是用户级别的概念,通常由操作系统进行管理调度。作业可以包含多个程序进程。 ### 程序(Program) 程序是指一组指令的集合,用于完成特定的任务。它是静态的,通常存储在磁盘上,不占用系统资源。程序只有在被加载到内存并执行时才会变成进程。 ### 进程(Process) 进程是程序的一次执行实例,是操作系统分配资源的基本单位。每个进程都有自己独立的地址空间,包含程序代码、数据进程控制块(PCB)。进程是动态的,它在执行过程中会占用CPU、内存等系统资源。 ### 线程(Thread) 线程进程中的一个执行流,是CPU调度的基本单位。一个进程可以包含多个线程,这些线程共享进程的资源(如内存空间、文件描述符等)。线程进程更轻量级,线程间的切换开销更小。 ### 异同点 1. **资源分配**: - 作业程序是静态的,不占用系统资源。 - 进程线程是动态的,占用系统资源。进程拥有独立的资源,而线程共享进程的资源。 2. **调度**: - 作业由操作系统进行管理调度。 - 进程线程由操作系统进行调度。进程是资源分配的基本单位,线程是CPU调度的基本单位。 3. **并发性**: - 进程之间是独立的,进程间的通信需要特殊的机制(如管道、消息队列、共享内存等)。 - 线程之间共享进程的资源,线程间的通信更方便。 4. **开销**: - 进程切换的开销较大,因为需要切换地址空间资源。 - 线程切换的开销较小,因为共享同一地址空间资源。 ### 总结 - 作业是用户提交的任务。 - 程序是静态的代码集合。 - 进程是程序的一次执行实例,拥有独立的资源。 - 线程进程中的一个执行流,共享进程的资源。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值