Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Bugfixes + test suitx
[simgrid.git] / src / xbt / threadpool_private.h
1 /* Copyright (c) 2004, 2005, 2007, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _XBT_THREADPOOL_PRIVATE_H
8 #define _XBT_THREADPOOL_PRIVATE_H
9
10 #include "xbt/threadpool.h"
11 #include "xbt/xbt_os_thread.h"
12 #include "xbt/sysdep.h"
13 #include "xbt/dynar.h"
14 #include "xbt/log.h"
15
16 typedef enum{
17   TPOOL_WAIT = 0,
18   TPOOL_DESTROY
19 } e_xbt_tpool_flag_t;
20
21 typedef struct s_xbt_tpool {
22   xbt_os_mutex_t mutex;           /* pool's mutex */
23   xbt_os_cond_t job_posted;       /* job is posted */
24   xbt_os_cond_t job_taken;        /* job is taken */
25   xbt_os_cond_t job_done;         /* job is done */
26   xbt_dynar_t jobs_queue;
27   e_xbt_tpool_flag_t flags;
28   unsigned int num_workers;
29   unsigned int num_idle_workers;
30   unsigned int max_jobs;
31 } s_xbt_tpool_t;
32
33 typedef struct s_xbt_tpool_job {
34   void_f_pvoid_t fun;
35   void *fun_arg;
36 } s_xbt_tpool_job_t, *xbt_tpool_job_t;
37
38 #endif