- 论坛徽章:
- 0
|
我想先创建一个最大可达30个线程的线程池,然后将每个线程的闲置时间最大设成5秒,超过5秒则自动关闭空闲线程。可是现在我先创建一个30个线程的线程池,然后什么也不做,打印出来的空闲线程还是0个呢??- #include <stdio.h>
- #include <glib.h>
- #include <pthread.h>
- #include <string.h>
- #define MAX_THREAD_NUM 30
- /** 全局锁*/
- pthread_mutex_t g_lock;
- /**
- * @brief 线程池回调函数,线程执行的主体函数
- */
- void
- show_result(gpointer str, gpointer data)
- {
- pthread_mutex_lock(&g_lock);
- printf("The result is : %s\n", (char *)str);
- pthread_mutex_unlock(&g_lock);
- }
- void
- main()
- {
- char *str = "thread_pool example";
- int count = 0;
- int g_thread_num = 0;
- GThreadPool *thread_pool;
- int unused=-1;
- int nownum=-1;
- int maxidle=-1;
- int maxunused=-1;
- /**
- * 初始化互斥锁,NULL表示使用默认的快速互斥锁。
- */
- pthread_mutex_init(&g_lock, NULL);
- g_thread_init(NULL);
- thread_pool = g_thread_pool_new(show_result, NULL, MAX_THREAD_NUM, TRUE, NULL);
- g_thread_pool_set_max_idle_time(0);
- g_thread_pool_set_max_unused_threads(1);
- if (thread_pool == NULL)
- {
- printf("g_thread_pool_new failed!\n");
- return ;
- }
- /**
- * 调用20次线程池
- * 实际线程池中最多有10个线程同时运行
- */
- /*
- for (count; count < 10; count++)
- {
- g_thread_pool_push(thread_pool, (gpointer)str, NULL);
- }
- */
- sleep(20);
- g_thread_num = g_thread_pool_get_max_threads(thread_pool);
- unused= g_thread_pool_get_num_unused_threads();
- printf("Max number in the pthread pool: %d\n", g_thread_num);
- printf("unused thread:%d\n",unused);
- nownum=g_thread_pool_get_num_threads(thread_pool);
- printf("now num of thread in pool:%d\n",nownum);
- maxidle=g_thread_pool_get_max_idle_time();
- printf("max idle time:%d\n",maxidle);
- maxunused= g_thread_pool_get_max_unused_threads();
- printf("max unused thread:%d\n",maxunused);
- // g_thread_pool_free(thread_pool, 0, 1);
- return;
- }
-
复制代码 打印结果是:
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
这是为什么呢,麻烦懂的吼一下啊,谢谢了。 |
|