X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b3b356352e87ae00a20f737c48e19b0c8413455a..91b3883142b769ef1fc0b7d460f78d2ae526bca2:/include/simgrid/datatypes.h diff --git a/include/simgrid/datatypes.h b/include/simgrid/datatypes.h index f93f53693c..815e9370d5 100644 --- a/include/simgrid/datatypes.h +++ b/include/simgrid/datatypes.h @@ -7,7 +7,9 @@ #ifndef SIMGRID_DATATYPES_H_ #define SIMGRID_DATATYPES_H_ -typedef struct vm_params { +#include "simgrid/forward.h" + +struct vm_params { int ncpus; sg_size_t ramsize; int overcommit; @@ -19,11 +21,13 @@ typedef struct vm_params { int skip_stage2; double max_downtime; - double dp_rate; + double dp_intensity; // Percentage of pages that get dirty compared to netspeed [0;1] double dp_cap; /* bytes per 1 flop execution */ /* set migration speed */ double mig_speed; -} s_vm_params_t, *vm_params_t; +}; +typedef struct vm_params s_vm_params_t; +typedef struct vm_params* vm_params_t; #endif /* SIMGRID_DATATYPES_H_ */