IO进程线程day5

作业

1.完成图片拷贝,要求主线程拷贝一半,分支线程拷贝另一半。

#include 
#include 
#include 
#include 
#include 
#include 

//拷贝前半部分
void* callBack1(void* arg)
{
    int fd_r = open("./index.jpeg",O_RDONLY);
    if(fd_r < 0)
    {
        perror("open");
        return NULL;
    }
    int fd_w = open("./copy.png",O_WRONLY);
    if(fd_w < 0)
    {
        perror("open");
        return NULL;
    }
    off_t size = lseek(fd_r,0,SEEK_END);
    lseek(fd_r,0,SEEK_END);
    lseek(fd_w,0,SEEK_END);

    char c = 0;
    for(int i = 0;i

2.

要求定义一个全局变量 char buf[] = "1234567",创建两个线程,不考虑退出条件。

A线程循环打印buf字符串,

B线程循环倒置buf字符串,即buf中本来存储1234567,倒置后buf中存储7654321. B线程中不打印!!

倒置不允许使用辅助数组。

要求A线程打印出来的结果只能为 1234567 或者 7654321 不允许出现7634521 7234567

不允许使用sleep函数

分析出现错误的原因。

#include 
#include 
#include 

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

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

void* callBack2(void* arg)
{
    char tmp = 0;
    while(1)
    {
        if(1 == flag)
        {
            for(int i=0; i

3.xmind

你可能感兴趣的:(c#)