免费注册 查看新帖 |

Chinaunix

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

glib2线程池无法动态控制线程数 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-06-19 10:44 |只看该作者 |倒序浏览
我想先创建一个最大可达30个线程的线程池,然后将每个线程的闲置时间最大设成5秒,超过5秒则自动关闭空闲线程。可是现在我先创建一个30个线程的线程池,然后什么也不做,打印出来的空闲线程还是0个呢??
  1. #include <stdio.h>
  2. #include <glib.h>
  3. #include <pthread.h>
  4. #include <string.h>

  5. #define MAX_THREAD_NUM 30


  6. /** 全局锁*/
  7. pthread_mutex_t g_lock;

  8. /**
  9. * @brief 线程池回调函数,线程执行的主体函数
  10. */
  11. void
  12. show_result(gpointer str, gpointer data)
  13. {

  14.   pthread_mutex_lock(&g_lock);
  15.   printf("The result is : %s\n", (char *)str);


  16.   pthread_mutex_unlock(&g_lock);
  17. }


  18. void
  19. main()
  20. {
  21.   char *str = "thread_pool example";
  22.   int count = 0;
  23.   int g_thread_num = 0;
  24.   GThreadPool *thread_pool;
  25.   int unused=-1;
  26.   int nownum=-1;
  27.   int maxidle=-1;
  28.   int maxunused=-1;
  29. /**

  30.    * 初始化互斥锁,NULL表示使用默认的快速互斥锁。

  31.    */
  32.   pthread_mutex_init(&g_lock, NULL);

  33.   g_thread_init(NULL);

  34.   thread_pool = g_thread_pool_new(show_result, NULL, MAX_THREAD_NUM, TRUE, NULL);

  35. g_thread_pool_set_max_idle_time(0);
  36.    g_thread_pool_set_max_unused_threads(1);


  37.   if (thread_pool == NULL)
  38.   {
  39.     printf("g_thread_pool_new failed!\n");
  40.     return ;
  41.   }
  42.   /**
  43.    * 调用20次线程池
  44.    * 实际线程池中最多有10个线程同时运行
  45.    */

  46.   /*
  47.   for (count; count < 10; count++)
  48.   {
  49.     g_thread_pool_push(thread_pool, (gpointer)str, NULL);
  50.   }
  51.   */

  52.   sleep(20);
  53.   g_thread_num =  g_thread_pool_get_max_threads(thread_pool);

  54.   unused= g_thread_pool_get_num_unused_threads();

  55.   printf("Max number in the pthread pool: %d\n", g_thread_num);
  56.   printf("unused thread:%d\n",unused);




  57.   nownum=g_thread_pool_get_num_threads(thread_pool);
  58.   printf("now num of thread in pool:%d\n",nownum);

  59.   maxidle=g_thread_pool_get_max_idle_time();

  60.   printf("max idle time:%d\n",maxidle);


  61.   maxunused= g_thread_pool_get_max_unused_threads();
  62.   printf("max unused thread:%d\n",maxunused);


  63. //  g_thread_pool_free(thread_pool, 0, 1);

  64.   return;
  65. }


复制代码
打印结果是:
Max number in the pthread pool: 30
unused thread:0
now num of thread in pool:30
max idle time:0
max unused thread:1

这是为什么呢,麻烦懂的吼一下啊,谢谢了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP