#ifndef __HEATING_H__ #define __HEATING_H__ /* heating scheme using a thread pool if available Peter Beerli 2000 Copyright 1996-2002 Peter Beerli and Joseph Felsenstein, Seattle WA Copyright 2003-2004 Peter Beerli, Tallahassee FL Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. $Id: heating.h 2157 2013-04-16 22:27:40Z beerli $ */ #ifdef PTHREADS #include #include typedef struct tpool_work { void (*routine) (); void *arg; struct tpool_work *next; } tpool_work_t; typedef struct _tpool_t { int num_threads; int max_queue_size; int do_not_block_when_full; pthread_t *threads; int cur_queue_size; tpool_work_t *queue_head; tpool_work_t *queue_tail; pthread_mutex_t random_lock; pthread_mutex_t queue_lock; pthread_cond_t queue_done; pthread_cond_t queue_not_empty; pthread_cond_t queue_not_full; pthread_cond_t queue_empty; int queue_closed; int shutdown; int done; } _tpool_t; typedef _tpool_t *tpool_t; extern void tpool_init (tpool_t * tpoolp, int num_worker_threads, int max_queue_size, int do_not_block_when_full); extern void fill_tpool (tpool_t tpool, world_fmt ** universe, int universe_size); extern void wait_tpool (tpool_t tpoolp, int usize); extern int tpool_destroy (tpool_t tpool, int finish); extern int tpool_synchronize (tpool_t tpool, int finish); extern int tpool_add_work (tpool_t tpool, void *routine, void *arg, long z); #else #endif /*PTHREADS*/ extern void adjust_temperatures(world_fmt ** universe, long hchains, long step, long steps); extern void adjust_temperatures_bounded(world_fmt ** universe, long hchains, long step, long steps); #endif