Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
283b025774c0ae1942bf0e72b598e47bb5ca50dd
[simgrid.git] / src / xbt / parmap_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/parmap.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   PARMAP_WAIT = 0,
18   PARMAP_WORK,
19   PARMAP_DESTROY,
20 } e_xbt_parmap_flag_t;
21
22 typedef struct s_xbt_parmap {
23   xbt_os_mutex_t mutex;           /* pool's mutex */
24   xbt_os_cond_t job_posted;       /* job is posted */
25   xbt_os_cond_t all_done;         /* job is done */
26   e_xbt_parmap_flag_t *flags;     /* Per thread flag + lastone for the parmap */
27   unsigned int num_workers;
28   unsigned int num_idle_workers;
29   unsigned int workers_max_id;
30   void_f_pvoid_t fun;
31   xbt_dynar_t data;
32 } s_xbt_parmap_t;
33
34 #endif