Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove the skip_stage parameters from VM params
[simgrid.git] / include / simgrid / datatypes.h
1 /* Copyright (c) 2013-2015. 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 SIMGRID_DATATYPES_H_
8 #define SIMGRID_DATATYPES_H_
9
10 #include "simgrid/forward.h"
11
12 struct vm_params {
13   double max_downtime;
14   double dp_intensity; // Percentage of pages that get dirty compared to netspeed [0;1] bytes per 1 flop execution
15   double dp_cap;
16   double mig_speed; // Set migration speed
17 };
18
19 typedef struct vm_params  s_vm_params_t;
20 typedef struct vm_params* vm_params_t;
21
22 #endif /* SIMGRID_DATATYPES_H_ */