The thread pool
Definition at line 61 of file tpi_tnycthrd.c.
Data Fields | |
int | nthreads |
int | queuesize |
thrd_t * | threads |
SCIP_JOBQUEUE * | jobqueue |
SCIP_JOBQUEUE * | currentjobs |
SCIP_JOBQUEUE * | finishedjobs |
int | currworkingthreads |
SCIP_Bool | blockwhenfull |
int | currentid |
SCIP_Bool | shutdown |
SCIP_Bool | queueopen |
SCIP_LOCK | poollock |
SCIP_CONDITION | queuenotempty |
SCIP_CONDITION | queuenotfull |
SCIP_CONDITION | queueempty |
SCIP_CONDITION | jobfinished |
int SCIP_ThreadPool::nthreads |
number of threads in the pool
Definition at line 64 of file tpi_tnycthrd.c.
Referenced by SCIPtpiGetNumThreads().
int SCIP_ThreadPool::queuesize |
the total number of items to enter the queue
Definition at line 65 of file tpi_tnycthrd.c.
Referenced by threadPoolAddWork(), and threadPoolThreadRetcode().
thrd_t* SCIP_ThreadPool::threads |
the threads included in the pool
Definition at line 68 of file tpi_tnycthrd.c.
SCIP_JOBQUEUE* SCIP_ThreadPool::jobqueue |
the job queue
Definition at line 69 of file tpi_tnycthrd.c.
Referenced by SCIPtpiCollectJobs(), threadPoolAddWork(), and threadPoolThreadRetcode().
SCIP_JOBQUEUE* SCIP_ThreadPool::currentjobs |
the jobs currently being processed on a thread; only a single job is allowed per thread.
Definition at line 70 of file tpi_tnycthrd.c.
Referenced by SCIPtpiCollectJobs(), and threadPoolThreadRetcode().
SCIP_JOBQUEUE* SCIP_ThreadPool::finishedjobs |
finished jobs that are not yet collected
Definition at line 72 of file tpi_tnycthrd.c.
Referenced by SCIPtpiCollectJobs(), and threadPoolThreadRetcode().
int SCIP_ThreadPool::currworkingthreads |
the threads currently processing jobs
Definition at line 73 of file tpi_tnycthrd.c.
Referenced by threadPoolThreadRetcode().
SCIP_Bool SCIP_ThreadPool::blockwhenfull |
indicates that the queue can only be as large as nthreads
Definition at line 74 of file tpi_tnycthrd.c.
Referenced by threadPoolAddWork(), and threadPoolThreadRetcode().
int SCIP_ThreadPool::currentid |
current job id
Definition at line 75 of file tpi_tnycthrd.c.
Referenced by SCIPtpiGetNewJobID(), and SCIPtpiSumbitJob().
SCIP_Bool SCIP_ThreadPool::shutdown |
indicates whether the pool needs to be shut down
Definition at line 78 of file tpi_tnycthrd.c.
Referenced by threadPoolAddWork(), and threadPoolThreadRetcode().
SCIP_Bool SCIP_ThreadPool::queueopen |
indicates whether the queue is open
Definition at line 79 of file tpi_tnycthrd.c.
Referenced by threadPoolAddWork().
SCIP_LOCK SCIP_ThreadPool::poollock |
mutex to allow read and write of the pool features
Definition at line 82 of file tpi_tnycthrd.c.
Referenced by SCIPtpiCollectJobs(), SCIPtpiGetNewJobID(), threadPoolAddWork(), and threadPoolThreadRetcode().
SCIP_CONDITION SCIP_ThreadPool::queuenotempty |
condition to broadcast the queue has jobs
Definition at line 83 of file tpi_tnycthrd.c.
Referenced by threadPoolThreadRetcode().
SCIP_CONDITION SCIP_ThreadPool::queuenotfull |
condition to broadcast the queue is not full
Definition at line 84 of file tpi_tnycthrd.c.
Referenced by threadPoolAddWork(), and threadPoolThreadRetcode().
SCIP_CONDITION SCIP_ThreadPool::queueempty |
condition to broadcast that the queue is empty
Definition at line 85 of file tpi_tnycthrd.c.
Referenced by threadPoolThreadRetcode().
SCIP_CONDITION SCIP_ThreadPool::jobfinished |
condition to broadcast that a job has been finished
Definition at line 86 of file tpi_tnycthrd.c.
Referenced by SCIPtpiCollectJobs().