实验四

作者: 空白_ce1f | 来源:发表于2017-05-02 21:47 被阅读0次

    西 安 邮 电 大 学

    (计算机学院)

    操作系统课内实验报告

    实验名称:互斥

    专业名称:计算机科学与技术

    班 级:计科1503

    学生姓名:魏新超

    学号(8位):04151091

    指导教师:陈莉君

    实验日期:2017年4月18日

    一. 实验目的及实验环境
    通过观察、分析实验现象,深入理解理解互斥锁的原理及特点掌握在POSIX 规范中的互斥函数的功能及使用方法。
    实验环境:deepin-15.3

    二. 实验内容

    1. 你预想deadlock.c 的运行结果会如何?
      线程1 ,2会交替运行,且执行到一半会终止。
    2. deadlock.c 的实际运行结果如何?多次运行每次的现象都一样吗?为什么会这样?
      交替执行!每次执行到一半都会终止。
      每次运行的结果不同。 线程终止是因为,线程的推进顺序不合法。
      为避免死锁的产生,则应调换线程1或线程2对1,2号资源加锁的顺序。即使线程1,2对1,2号资源的加锁顺序一致。即一次性为其分配了它所需要的所有资源,避免了死锁的产生
    3. 把修改后的两个程序的源代码附在实验报告后。
      三.方案设计
      仔细阅读程序,编译程序后,先预计一下这个程序的运行结果。运行程序。若程序没有响应,按ctrl+c 中断程序运行,然后再重新运行,如此反复若干次,记录下每次的运行结果。若产生了死锁,请修改程序,使其不会死锁。

    四.测试数据及运行结果

    ![XC$(5VIMI{4Y8NDVZ_J7_P.png

    ![7W1GXE]Q(8Q99M2AC8SK6UG.png](https://img.haomeiwen.com/i5878004/e9105f00bfd597a2.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

    五.总结
    在本次实验中,我们了解到死锁的情况,并实现加锁与解锁,从而实现解锁缓冲区问题,也了解到死锁的机制。

    六.附录:源代码(电子版, 纸质版不打印)

    #include <stdio.h> 
    #include <sys/types.h>
    #include <unistd.h> 
    #include <ctype.h>
    #include <pthread.h> 
    #define LOOP_TIMES 10000 
    pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
               /*用宏PTHREAD_MUTEX_INITIALIZER来初始化 */
    pthread_mutex_t mutex2 = PTHREAD_MUTEX_INITIALIZER;
    void* thread_worker(void*);
    void critical_section(int thread_num, int i);
    int main(void)  
    {       
        int rtn, i;       
        pthread_t pthread_id = 0; /* 存放子线程的id */ 
        rtn = pthread_create(&pthread_id,   NULL, thread_worker, NULL ); 
        if(rtn != 0) 
        {            
            printf("pthread_create ERROR!\n");             
            return -1; 
        } 
        for (i=0; i<LOOP_TIMES; i++)  
        {             
            pthread_mutex_lock(&mutex2);
            pthread_mutex_lock(&mutex1);     
            critical_section(1, i);   
            pthread_mutex_unlock(&mutex2);            
            pthread_mutex_unlock(&mutex1);
        }
        pthread_mutex_destroy(&mutex1);     
        pthread_mutex_destroy(&mutex2); 
        return 0; 
    } 
    void* thread_worker(void* p)  
    { 
          int i; 
          for (i=0; i<LOOP_TIMES; i++) 
          { 
             pthread_mutex_lock(&mutex2);
             pthread_mutex_lock(&mutex1); 
             critical_section(2, i); 
             pthread_mutex_unlock(&mutex2);
             pthread_mutex_unlock(&mutex1);
          }
    } 
    void critical_section(int thread_num, int i) 
    { 
          printf("Thread%d: %d\n", thread_num,  i);
    }
    

    相关文章

      网友评论

          本文标题:实验四

          本文链接:https://www.haomeiwen.com/subject/eeyhtxtx.html