免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2687 | 回复: 5
打印 上一主题 下一主题

怎样解释这个带有互斥量的输出 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-10-04 22:29 |只看该作者 |倒序浏览
代码如下:
  1. #include<pthread.h>
  2. #include<stdlib.h>
  3. #include<stdio.h>
  4. #include<unistd.h>

  5. int myglobal;

  6. pthread_mutex_t mymutex = PTHREAD_MUTEX_INITIALIZER;

  7. void *thread_function( void *arg )
  8. {
  9.         int i;
  10.         int j;
  11.         for( i=0; i<10; i++)
  12.         {
  13.                 pthread_mutex_lock(&mymutex);
  14.                 j = myglobal;
  15.                 j=j+1;
  16.                 printf("i = %d in the thread\n",i);
  17.                 sleep(1);
  18.                 fflush(stdout);
  19.                 myglobal = j;
  20.                 pthread_mutex_unlock(&mymutex);
  21.         }
  22.         return NULL;
  23. }
  24. int main()
  25. {
  26.         pthread_t mythread;
  27.         int i;
  28.        
  29.         if( pthread_create(&mythread, NULL, thread_function, NULL ) )
  30.                 {
  31.                         printf("error creating thread.");
  32.                         abort();
  33.                 }
  34.                
  35.                 printf("\n======================\n");
  36.                 for( i = 0; i<10; i++ )
  37.                 {
  38.                         pthread_mutex_lock(&mymutex);
  39.                         myglobal = myglobal + 1;
  40.                         printf("i = %d in the main process\n",i);
  41.                         fflush(stdout);
  42.                         sleep(1);
  43.                         pthread_mutex_unlock(&mymutex);
  44.                 }
  45.                 printf("\n======================\n");
  46.                
  47.                 if(pthread_join(mythread, NULL) )
  48.                         {
  49.                                 printf("error joining thread");
  50.                                 abort();
  51.                         }
  52.                         printf(" \n myglogal equals %d \n",myglobal);
  53.                        
  54.                         exit(0);
  55. }
复制代码
这个是输出结果:
  1. i = 0 in the thread

  2. ======================
  3. i = 1 in the thread
  4. i = 2 in the thread
  5. i = 3 in the thread
  6. i = 4 in the thread
  7. i = 5 in the thread
  8. i = 6 in the thread
  9. i = 7 in the thread
  10. i = 8 in the thread
  11. i = 9 in the thread
  12. i = 0 in the main process
  13. i = 1 in the main process
  14. i = 2 in the main process
  15. i = 3 in the main process
  16. i = 4 in the main process
  17. i = 5 in the main process
  18. i = 6 in the main process
  19. i = 7 in the main process
  20. i = 8 in the main process
  21. i = 9 in the main process

  22. ======================

  23. myglogal equals 20
复制代码

论坛徽章:
1
天蝎座
日期:2013-12-06 18:23:58
2 [报告]
发表于 2011-10-05 12:28 |只看该作者
这个有什么问题吗? 互斥操作myglobal变量,保证了他最后的值是20.

论坛徽章:
0
3 [报告]
发表于 2011-10-06 15:16 |只看该作者
百度一下很多

论坛徽章:
0
4 [报告]
发表于 2011-10-06 19:24 |只看该作者
这个有什么问题吗? 互斥操作myglobal变量,保证了他最后的值是20.
crazyhadoop 发表于 2011-10-05 12:28



    我的意思 是说刚开始的哪个阶段怎么是这个样子的:
  1. i = 0 in the thread



  2. ======================

  3. i = 1 in the thread
复制代码
它怎么是先输出线程的一部分,然后再输出main函数里的printf("\n======================\n");语句的。

还有怎么是先输出线程的打印内容,而不是先输出main()内的内容

论坛徽章:
0
5 [报告]
发表于 2012-07-23 19:15 |只看该作者
主函数里面的线程要在访问加锁的 myglobal变量  才会被阻塞吧    应该是这样理解滴
:wink:

论坛徽章:
95
程序设计版块每日发帖之星
日期:2015-09-05 06:20:00程序设计版块每日发帖之星
日期:2015-09-17 06:20:00程序设计版块每日发帖之星
日期:2015-09-18 06:20:002015亚冠之阿尔艾因
日期:2015-09-18 10:35:08月度论坛发贴之星
日期:2015-09-30 22:25:002015亚冠之阿尔沙巴布
日期:2015-10-03 08:57:39程序设计版块每日发帖之星
日期:2015-10-05 06:20:00每日论坛发贴之星
日期:2015-10-05 06:20:002015年亚冠纪念徽章
日期:2015-10-06 10:06:482015亚冠之塔什干棉农
日期:2015-10-19 19:43:35程序设计版块每日发帖之星
日期:2015-10-21 06:20:00每日论坛发贴之星
日期:2015-09-14 06:20:00
6 [报告]
发表于 2012-07-23 21:25 |只看该作者
firecityplans 发表于 2011-10-06 19:24
它怎么是先输出线程的一部分,然后再输出main函数里的printf("\n======================\n");语句的。

还有怎么是先输出线程的打印内容,而不是先输出main()内的内容


在 pthread_create 之&#140525;,thread_function 和 main 的執行就是並行的了,哪個先都是正常的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP