- 论坛徽章:
- 0
|
现在学习UNPV2的互斥锁时需要用多线程来模拟经典的生产者-消费者问题.但是我试图生成10个生产者,但是程序运行结果显示只有一个生产者运行了,pthread_setconcurrency(10)也调用了,什么原因呢?
我的系统是FC5 2.6.15的内核.代码如下:
- #include "ourhdr.h"
- #define MAXNITEMS 1000000
- #define MAXNTHREADS 100
- int nitems;
- struct {
- pthread_mutex_t mutex;
- int buf[MAXNITEMS];
- int nput;
- int nval;
- } shared = {
- PTHREAD_MUTEX_INITIALIZER
- };
- void *produce(void *);
- void *consume(void *);
- int main(int argc, char *argv[])
- {
- int i, nthreads, count[MAXNTHREADS];
- pthread_t tid_produce[MAXNTHREADS], tid_consume;
- if (argc != 3)
- err_quit("usage: prodcons2 <#items> <#threads>");
- nitems = min(atoi(argv[1]), MAXNITEMS);
- nthreads = min(atoi(argv[2]), MAXNTHREADS);
- pthread_setconcurrency(nthreads); //设置并发级别,怎么不起作用??
- for (i = 0; i < nthreads; i++) {
- count[i] = 0;
- pthread_create(&tid_produce[i], NULL, produce, &count[i]);
- }
- for (i = 0; i < nthreads; i++) {
- pthread_join(tid_produce[i], NULL);
- printf("count[%d] = %d\n", i, count[i]);
- }
- pthread_create(&tid_consume, NULL, consume, NULL);
- pthread_join(tid_consume, NULL);
- exit(0);
- }
- void *produce(void *arg)
- {
- for (; ;) {
- pthread_mutex_lock(&shared.mutex);
- if (shared.nput >= nitems) {
- pthread_mutex_unlock(&shared.mutex);
- return NULL;
- }
- shared.buf[shared.nput] = shared.nval;
- shared.nput++;
- shared.nval++;
- pthread_mutex_unlock(&shared.mutex);
- *((int *)arg) += 1;
- }
- }
- void *consume(void *arg)
- {
- int i;
- for (i = 0; i < nitems; i++) {
- if (shared.buf[i] != i)
- printf("buf[%d] = %d\n", i, shared.buf[i]);
- }
- return NULL;
- }
复制代码
还请各位帮忙指点一下.谢谢!
我的运行情况如下:
- [weckay@ mutex]$ ./prodcons2 10000 10
- count[0] = 10000
- count[1] = 0
- count[2] = 0
- count[3] = 0
- count[4] = 0
- count[5] = 0
- count[6] = 0
- count[7] = 0
- count[8] = 0
- count[9] = 0
复制代码
[ 本帖最后由 weckay 于 2007-5-18 15:33 编辑 ] |
|