当前位置:   article > 正文

操作系统实验三 观察Linux进程/线程的异步并发执行_并发count值计算

并发count值计算

一、实验目的

通过本实验学习如何创建Linux进程及线程,通过实验,观察Linux进程及线程的异步执行。理解进程及线程的区别及特性,进一步理解进程是资源分配单位,线程是独立调度单位。

二、实验环境

硬件环境:计算机一台,局域网环境;

软件环境:Linux Ubuntu操作系统,gcc编译器。

三、实验内容和步骤

1、进程异步并发执行

1)编写一个C语言程序,该程序首先初始化一个count变量为1,然后使用fork函数创建两个子进程,每个子进程对count加1后,显示“I am son, count=x”或“I am daughter, count=x”,父进程对count加1之后,显示“I am father, count=x”,其中x使用count值代替。最后父进程使用waitpid等待两个子进程结束之后退出。

编译连接后,多次运行该程序,观察屏幕上显示结果的顺序性,直到出现不一样的情况为止,并观察每行打印结果中count的值。

程序代码:

  1. #include<unistd.h>
  2. #include<stdio.h>
  3. int main()
  4. {
  5. pid_t son_pid,daughter_pid;
  6. int count = 1;
  7. son_pid = fork();
  8. if(son_pid == 0){
  9. count ++;
  10. printf("i am son, count = %d\n", count);
  11. }
  12. else{
  13. daugher_pid = fork();
  14. if(daughter_pid == 0){
  15. count++;
  16. printf("i am daughter, count = %d\n", count);
  17. }
  18. else{
  19. count++;
  20. printf("i am father, count =%d\n", count);
  21. waitpid(son_pid, NULL, 0);
  22. waitpid(daughter_pid, NULL, 0);
  23. }
  24. }
  25. return 0;
  26. }

 运行结果:

 

 

2)我们把上面的程序做如下修改:

  1. #include<unistd.h>
  2. #include<stdio.h>
  3. #include<unistd.h>
  4. int main()
  5. {
  6. pid_t son_pid, daughter_pid;
  7. int count = 1;
  8. for ( int i = 1; i < 3; i++)
  9. {
  10. son_pid = fork ();
  11. if(son_pid == 0)
  12. {
  13. count++;
  14. printf("I am son, count = %d\n", count);
  15. }
  16. else
  17. {
  18. daughter_pid = fork();
  19. if(daughter_pid == 0)
  20. {
  21. count++;
  22. printf("I am daughter, count = %d\n", count);
  23. }
  24. else
  25. {
  26. count++;
  27. printf("I am father, count = %d\n", count);
  28. waitpid(son_pid, NULL ,0);
  29. waitpid(daughter_pid, NULL ,0);
  30. }
  31. }
  32. }
  33. return 0;
  34. }

运行结果:

2、线程异步并发执行

编写一个C语言程序,该程序首先初始化一个count变量为1,然后使用pthread_create函数创建两个线程,每个线程对count加1后,显示“I am son, count=x”或“I am daughter, count=x”,父进程对count加1之后,显示“I am father, count=x”,其中x使用count值代替。最后父进程使用pthread_join等待两个线程结束之后退出。

编译连接后,多次运行该程序,观察屏幕上显示结果的顺序性,直到出现不一样的情况为止,并观察每行打印结果中count的值。

程序代码:

  1. #include<unistd.h>
  2. #include<stdio.h>
  3. #include<pthread.h>
  4. void *daughter(void *num)
  5. {
  6. int* a = ( int * ) num;
  7. *a += 1;
  8. printf("I am daughter, count = %d\n", *a);
  9. }
  10. void *son(void *num)
  11. {
  12. int* a = ( int * ) num;
  13. *a += 1;
  14. printf("I am son, count = %d\n", *a);
  15. }
  16. int main()
  17. {
  18. pthread_t son_tid, daughter_tid;
  19. int count = 1;
  20. pthread_create(&son_tid, NULL, son, &count);
  21. pthread_create(&daughter_tid, NULL, daughter, &count);
  22. count++;
  23. printf("I am parent, count = %d\n", count);
  24. pthread_join(son_tid, NULL);
  25. pthread_join(daughter_tid, NULL);
  26. return 0;
  27. }

运行结果:

 

四、实验总结

观察两个实验结果中count值的变化,分析父进程和子进程两者之间的关系以及主线程和子线程之间的关系,写出进程和线程两者之间的区别。

1、进程异步并发执行中,parent、son和daughter中的count是独立的,都是从1加1变为2,线程异步并发执行中,parent、son和daughter中的count不是独立的,先是在son中count加1变为2,然后parent中count又加1变为3,然后daughter中count又加1变为4。

2、父进程和子进程二者并不共享地址空间,两个是单独的进程,继承以后二者不再有关联,子进程单独运行。同一进程中的所有线程共享所在进程的地址空间和全部资源,但线程间都相互独立的并发执行。

3、区别:进程是具有一定独立功能的程序关于某个数据集合上的一次运行活动,进程是系统进行资源分配和调度的一个独立单位。线程是进程的一个实体,是CPU调度和分派的基本单位,它是比进程更小的能独立运行的基本单位.线程自己基本上不拥有系统资源,只但是它可与同属一个进程的其他的线程共享进程所拥有的全部资源。一个线程可以创建和撤销另一个线程;同一个进程中的多个线程之间可以并发执行。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/578320
推荐阅读
相关标签
  

闽ICP备14008679号