Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix issue with surf.h included in simix.h
[simgrid.git] / include / simgrid / datatypes.h
1 /*
2  * datatypes.h
3  *
4  *  Created on: Nov 28, 2013
5  *      Author: bedaride
6  */
7
8 #ifndef SIMGRID_DATATYPES_H_
9 #define SIMGRID_DATATYPES_H_
10
11 typedef struct ws_params {
12   int ncpus;
13   sg_size_t ramsize;
14   int overcommit;
15
16   /* The size of other states than memory pages, which is out-of-scope of dirty
17    * page tracking. */
18   long devsize;
19   int skip_stage1;
20   int skip_stage2;
21   double max_downtime;
22
23   double dp_rate;
24   double dp_cap; /* bytes per 1 flop execution */
25
26   double xfer_cpu_overhead;
27   double dpt_cpu_overhead;
28
29   /* set migration speed */
30   double mig_speed;
31 } s_ws_params_t, *ws_params_t;
32
33 #endif /* SIMGRID_DATATYPES_H_ */