X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8991ed0684cc383d92a815959d85e2d05995d9d2..51568df0f325c38dca2ac96d3a126de8b225716a:/src/simix/private.h diff --git a/src/simix/private.h b/src/simix/private.h index ccbec1e1e4..0630a01612 100644 --- a/src/simix/private.h +++ b/src/simix/private.h @@ -29,7 +29,7 @@ typedef struct s_smx_global { smx_context_factory_t context_factory; xbt_dict_t host; - xbt_swag_t process_to_run; + xbt_dynar_t process_to_run; xbt_swag_t process_list; xbt_swag_t process_to_destroy; smx_process_t maestro_process; @@ -124,6 +124,10 @@ typedef struct s_smx_action { }; +#ifdef HAVE_LATENCY_BOUND_TRACKING + int latency_limited; +#endif + #ifdef HAVE_TRACING char *category; /* simix action category for instrumentation */ #endif @@ -227,9 +231,9 @@ static XBT_INLINE void SIMIX_context_suspend(smx_context_t context) /** \brief executes all the processes (in parallel if possible) - \param processes the swag of processes to execute + \param processes the dynar of processes to execute */ -static XBT_INLINE void SIMIX_context_runall(xbt_swag_t processes) +static XBT_INLINE void SIMIX_context_runall(xbt_dynar_t processes) { (*(simix_global->context_factory->runall)) (processes); }