summaryrefslogtreecommitdiff
path: root/src/thrd/pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/thrd/pool.h')
-rw-r--r--[-rwxr-xr-x]src/thrd/pool.h106
1 files changed, 54 insertions, 52 deletions
diff --git a/src/thrd/pool.h b/src/thrd/pool.h
index a744133..0fe97f3 100755..100644
--- a/src/thrd/pool.h
+++ b/src/thrd/pool.h
@@ -1,76 +1,78 @@
+/*:*
+ *: File: ./src/thrd/pool.h
+ *:
+ *: yChat; Homepage: www.yChat.org; Version 0.7.9.5-RELEASE
+ *:
+ *: Copyright (C) 2003 Paul C. Buetow, Volker Richter
+ *: Copyright (C) 2004 Paul C. Buetow
+ *: Copyright (C) 2005 EXA Digital Solutions GbR
+ *:
+ *: This program is free software; you can redistribute it and/or
+ *: modify it under the terms of the GNU General Public License
+ *: as published by the Free Software Foundation; either version 2
+ *: of the License, or (at your option) any later version.
+ *:
+ *: This program is distributed in the hope that it will be useful,
+ *: but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ *: GNU General Public License for more details.
+ *:
+ *: You should have received a copy of the GNU General Public License
+ *: along with this program; if not, write to the Free Software
+ *: Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *:*/
+
#include "../incl.h"
#ifndef POOL_H
#define POOL_H
+#include <queue>
+
using namespace std;
class pool
{
private:
- typedef struct tpool_work
- {
- void (*routine)(void*); ///
- void *arg;
- struct tpool_work *next;
- }
- tpool_work_t;
-
- typedef struct tpool
- {
- // pool characteristics:
- int num_threads;
- int max_queue_size;
- int do_not_block_when_full;
-
- // pool state
- pthread_t *threads;
- int cur_queue_size;
-
- tpool_work_t *queue_head;
- tpool_work_t *queue_tail;
+ friend class thro;
- pthread_mutex_t queue_lock;
- pthread_cond_t queue_not_empty;
- pthread_cond_t queue_not_full;
- pthread_cond_t queue_empty;
+ struct task
+ {
+ void(*p_func)(void*);
+ void *p_void;
- int queue_closed;
- int shutdown;
+ task(void(*p_func)(void*), void *p_void)
+ {
+ this->p_func = p_func;
+ this->p_void = p_void;
}
- *tpool_t;
-
- int i_thrd_pool_size;
- int i_thrd_pool_queue;
-
- tpool_t thread_pool;
-
- void
- tpool_init( tpool_t *tpoolp, int num_worker_threads, int max_queue_size, int do_not_block_when_full );
+ };
- int
- tpool_add_work( tpool_t tpool, void(*routine)(void*), void* arg );
+ pthread_mutex_t mut_threads;
+ pthread_mutex_t mut_queue_tasks;
+ pthread_mutex_t mut_num_avail_threads;
+ pthread_cond_t cond_new_task;
- // virtual void
- // tpool_destroy( tpool_t tpoolp, int finish );
+ int i_num_avail_threads;
+ int i_num_total_threads;
- static void*
- tpool_thread( void* arg);
+ queue<task*> queue_tasks;
- static void
- run_func( void *v_pointer );
+ 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 methods:
public:
- pool( );
+ pool();
+ ~pool();
+
+ void run(void* p_void);
+ bool allow_user_login();
- // inline (speed)!
- void run( void *arg )
- {
- tpool_add_work( thread_pool, run_func, arg );
- }
#ifdef NCURSES
- void print_pool_size();
+
+ void print_pool_size();
#endif
};