免费注册 查看新帖 |

Chinaunix

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

多线程(生产者-消费者), 怎么只有一个生产者运行,其它的怎么了?? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-05-18 15:25 |只看该作者 |倒序浏览
现在学习UNPV2的互斥锁时需要用多线程来模拟经典的生产者-消费者问题.但是我试图生成10个生产者,但是程序运行结果显示只有一个生产者运行了,pthread_setconcurrency(10)也调用了,什么原因呢?
我的系统是FC5 2.6.15的内核.代码如下:

  1. #include "ourhdr.h"

  2. #define MAXNITEMS 1000000
  3. #define MAXNTHREADS   100

  4. int nitems;

  5. struct {
  6.     pthread_mutex_t mutex;
  7.     int buf[MAXNITEMS];
  8.     int nput;
  9.     int nval;
  10. } shared = {
  11.     PTHREAD_MUTEX_INITIALIZER
  12. };

  13. void *produce(void *);
  14. void *consume(void *);

  15. int main(int argc, char *argv[])
  16. {
  17.     int i, nthreads, count[MAXNTHREADS];
  18.     pthread_t tid_produce[MAXNTHREADS], tid_consume;
  19.     if (argc != 3)
  20.         err_quit("usage: prodcons2 <#items> <#threads>");
  21.     nitems = min(atoi(argv[1]), MAXNITEMS);
  22.     nthreads = min(atoi(argv[2]), MAXNTHREADS);

  23.     pthread_setconcurrency(nthreads); //设置并发级别,怎么不起作用??
  24.     for (i = 0; i < nthreads; i++) {
  25.         count[i] = 0;
  26.         pthread_create(&tid_produce[i], NULL, produce, &count[i]);
  27.     }

  28.     for (i = 0; i < nthreads; i++) {
  29.         pthread_join(tid_produce[i], NULL);
  30.         printf("count[%d] = %d\n", i, count[i]);
  31.     }

  32.     pthread_create(&tid_consume, NULL, consume, NULL);
  33.     pthread_join(tid_consume, NULL);
  34.     exit(0);
  35. }

  36. void *produce(void *arg)
  37. {
  38.     for (; ;) {
  39.         pthread_mutex_lock(&shared.mutex);
  40.         if (shared.nput >= nitems) {
  41.             pthread_mutex_unlock(&shared.mutex);
  42.             return NULL;
  43.         }
  44.         shared.buf[shared.nput] = shared.nval;
  45.         shared.nput++;
  46.         shared.nval++;
  47.         pthread_mutex_unlock(&shared.mutex);
  48.         *((int *)arg) += 1;
  49.     }
  50. }

  51. void *consume(void *arg)
  52. {
  53.     int i;
  54.     for (i = 0; i < nitems; i++) {
  55.         if (shared.buf[i] != i)
  56.             printf("buf[%d] = %d\n", i, shared.buf[i]);
  57.     }

  58.     return NULL;
  59. }
复制代码


还请各位帮忙指点一下.谢谢!

我的运行情况如下:


  1. [weckay@ mutex]$ ./prodcons2 10000 10
  2. count[0] = 10000
  3. count[1] = 0
  4. count[2] = 0
  5. count[3] = 0
  6. count[4] = 0
  7. count[5] = 0
  8. count[6] = 0
  9. count[7] = 0
  10. count[8] = 0
  11. count[9] = 0
复制代码

[ 本帖最后由 weckay 于 2007-5-18 15:33 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2007-05-18 15:44 |只看该作者
说明你计算机NB撒,还没等第二个线程启动,第一个线程就加到10000了,所以后面的线程没活干咯。在线程函数里sleep一下,就OK了。

论坛徽章:
0
3 [报告]
发表于 2007-05-18 15:50 |只看该作者
偶试了一下,用1000000 10就能看出效果了.
不好意思~~~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP