clamd/thrmgr.h
c238ac42
 /*
  *  Copyright (C) 2004 Trog <trog@clamav.net>
  *
  *  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
48b7b4a7
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
c238ac42
  */
 
 #ifndef __THRMGR_H__
 #define __THRMGR_H__
 
 #include <pthread.h>
67118e92
 
 #ifndef C_WINDOWS
52e8d3c6
 #include <sys/time.h>
67118e92
 #endif
52e8d3c6
 
 typedef struct work_item_tag {
 	struct work_item_tag *next;
 	void *data;
 	struct timeval time_queued;
 } work_item_t;
 	
 typedef struct work_queue_tag {
 	work_item_t *head;
 	work_item_t *tail;
 	int item_count;
 } work_queue_t;
 
 typedef enum {
 	POOL_INVALID,
 	POOL_VALID,
bd8603aa
 	POOL_EXIT
52e8d3c6
 } pool_state_t;
 
 typedef struct threadpool_tag {
 	pthread_mutex_t pool_mutex;
 	pthread_cond_t pool_cond;
 	pthread_attr_t pool_attr;
 	
1593523e
 	pool_state_t state;
 	int thr_max;
 	int thr_alive;
 	int thr_idle;
52e8d3c6
 	int idle_timeout;
 	
 	void (*handler)(void *);
 	
 	work_queue_t *queue;
 } threadpool_t;
 
1593523e
 threadpool_t *thrmgr_new(int max_threads, int idle_timeout, void (*handler)(void *));
52e8d3c6
 void thrmgr_destroy(threadpool_t *threadpool);
 int thrmgr_dispatch(threadpool_t *threadpool, void *user_data);
c238ac42
 
 #endif