summaryrefslogtreecommitdiff
path: root/src/thrd/pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/thrd/pool.h')
-rwxr-xr-xsrc/thrd/pool.h68
1 files changed, 29 insertions, 39 deletions
diff --git a/src/thrd/pool.h b/src/thrd/pool.h
index cbd1e83..3a5f7b6 100755
--- a/src/thrd/pool.h
+++ b/src/thrd/pool.h
@@ -3,62 +3,52 @@
#ifndef POOL_H
#define POOL_H
+#include <queue>
+
using namespace std;
class pool
{
private:
- static int i_thrd_used;
+ friend class thro;
- typedef struct tpool_work {
- void (*routine)(void*); ///
- void *p_void;
- struct tpool_work *next;
- }
- tpool_work_t;
+ struct task
+ {
+ void(*p_func)(void*);
+ void *p_void;
- typedef struct tpool
+ task(void(*p_func)(void*), void *p_void)
{
- // pool characteristics:
- int num_threads;
- int max_queue_size;
-
- // pool state
- pthread_t *threads;
- int cur_queue_size;
-
- tpool_work_t *queue_head;
- tpool_work_t *queue_tail;
-
- pthread_mutex_t queue_lock;
- pthread_cond_t queue_not_empty;
- pthread_cond_t queue_not_full;
- pthread_cond_t queue_empty;
+ this->p_func = p_func;
+ this->p_void = p_void;
}
- *tpool_t;
+ };
- int i_thrd_pool_size;
- int i_thrd_pool_queue;
+ pthread_mutex_t mut_threads;
+ pthread_mutex_t mut_queue_tasks;
+ pthread_mutex_t mut_num_avail_threads;
+ pthread_cond_t cond_new_task;
- tpool_t thread_pool;
+ int i_num_avail_threads;
+ int i_num_total_threads;
- void tpool_init( tpool_t *tpoolp, int num_worker_threads, int max_queue_size);
- int tpool_add_work( tpool_t tpool, void(*routine)(void*), void* p_void );
- static void* tpool_thread( void *p_void);
- static void run_func( void *p_void );
+ queue<task*> queue_tasks;
+
+ int increase_pool(int i_num);
+ void add_task( void(*p_func)(void*), void* p_void );
+ static void* wait_for_task(void *p_void);
+ static void run_func(void *p_void);
public:
- pool();
+ pool();
+ ~pool();
- // inline (speed)!
- void run( void *p_void )
- {
- tpool_add_work( thread_pool, run_func, p_void );
- }
+ void run(void* p_void);
+ bool allow_user_login();
#ifdef NCURSES
- void print_pool_size();
- static void print_threads(int i_thrd_used);
+
+ void print_pool_size();
#endif
};