X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6d12780623c73d887cad474f358de9853ae0eb14..11540a621b6da515148b06059d4700053feee4db:/include/simgrid/datatypes.h diff --git a/include/simgrid/datatypes.h b/include/simgrid/datatypes.h index e46e72b00b..facacb4749 100644 --- a/include/simgrid/datatypes.h +++ b/include/simgrid/datatypes.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2014. The SimGrid Team. +/* Copyright (c) 2013-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,23 +7,16 @@ #ifndef SIMGRID_DATATYPES_H_ #define SIMGRID_DATATYPES_H_ -typedef struct ws_params { - int ncpus; - sg_size_t ramsize; - int overcommit; +#include "simgrid/forward.h" - /* The size of other states than memory pages, which is out-of-scope of dirty - * page tracking. */ - sg_size_t devsize; - int skip_stage1; - int skip_stage2; +struct vm_params { double max_downtime; + double dp_intensity; // Percentage of pages that get dirty compared to netspeed [0;1] bytes per 1 flop execution + double dp_cap; + double mig_speed; // Set migration speed +}; - double dp_rate; - double dp_cap; /* bytes per 1 flop execution */ - - /* set migration speed */ - double mig_speed; -} s_ws_params_t, *ws_params_t; +typedef struct vm_params s_vm_params_t; +typedef struct vm_params* vm_params_t; #endif /* SIMGRID_DATATYPES_H_ */