免费注册 查看新帖 |

Chinaunix

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

自己写的线程池的问题! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-11-17 13:57 |只看该作者 |倒序浏览
自己写了一个线程池,出现一点问题
程序在附件中,以下是程序的输出
ID: -1210315856 thread join in war!
ID: -1218708560 thread join in war!
ID: -1227101264 thread join in war!
ID: -1235493968 thread join in war!
ID: -1243886672 thread join in war!
1 idle :5, counter:5
2 idle :4, counter:5
3 idle :3, counter:5
4 idle :3, counter:5
5 idle :3, counter:5
6 idle :3, counter:5
7 idle :3, counter:5
8 idle :3, counter:5
9 idle :3, counter:5
10 idle :3, counter:5
11 idle :3, counter:5
12 idle :3, counter:5
13 idle :3, counter:5
14 idle :3, counter:5
15 idle :3, counter:5
16 idle :3, counter:5
17 idle :3, counter:5
18 idle :3, counter:5
19 idle :3, counter:5
20 idle :3, counter:5
1 :one thread done
2 :one thread done
5 :one thread done
3 :one thread done
4 :one thread done
21 idle :0, counter:5
ID: -1252279376 thread join in war!I am forced
22 idle :0, counter:6
ID: -1260672080 thread join in war!I am forced
6 :one thread done
7 :one thread done
8 :one thread done
9 :one thread done
10 :one thread done
11 :one thread done
12 :one thread done
23 idle :0, counter:7
ID: -1269064784 thread join in war!I am forced
i am waiting them
13 :one thread done
14 :one thread done
15 :one thread done
16 :one thread done
17 :one thread done
i quit because shutdown
i quit because shutdown
18 :one thread done
i quit because shutdown
19 :one thread done
i quit because shutdown
20 :one thread done
i quit because shutdown
21 :one thread done
i quit because shutdown
22 :one thread done
i quit because shutdown
23 :one thread done
i quit because shutdown
should i destroy mutex now ?
mutex destroy  OK
In destroy, idle:0,counter:0
destroy done
工作线程睡眠4秒,add_work添加请求的速度很快,idle应该早就为0了
可是不知为什么,idle没有被及时更新,add_work误以为还有空闲线程
其实请求数量早已超过线程数量,add_work应该创建新的线程
可是由于idle没被更新而没有创建更多线程,导致请求等待
怎样解决这个问题?

[ 本帖最后由 duyaolin 于 2007-11-17 13:59 编辑 ]

code.tar

20 KB, 下载次数: 41

code.tar

20 KB, 下载次数: 21

论坛徽章:
0
2 [报告]
发表于 2007-11-18 12:11 |只看该作者
大家帮帮忙!谢了!

论坛徽章:
0
3 [报告]
发表于 2007-11-22 13:42 |只看该作者
我的程序大概是这个样
int    add_work(struct task * tk){
        pthread_mutex_lock;
        if(idle > 0)
                pthread_cond_signal( &cv , &mutex);
        else{
               pthread_create();
                ....
        }
        pthread_mutex_unlock;
}
//worker 为工作线程
void    * worker(void * tk){
    pthread_mutex_lock(&mutex);
    idle++;
    while(1){
        while(have_work && quit == 0)
                    pthread_cond_wait(&cv);
        if(have_work){
                    idle--;
                    do something;
                    idle++;
        }
        if(quit)
               do quit ;
   }
}
我自己的看法是这样
可能是add_work增加工作,signal 一个线程,但这个线程没有获得锁 或 没被调度到,所以也没有执行到if(have_work)那
所以导致了idle 没减少。
不知是不是这样?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP