X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0c13871d73e933c1847faf8debea7b7745a3ff44..5faf49cdf3f8ad8751317b857a6d3134fe07eda3:/src/simix/smx_host_private.h diff --git a/src/simix/smx_host_private.h b/src/simix/smx_host_private.h index 6819f61005..8dfd9e448a 100644 --- a/src/simix/smx_host_private.h +++ b/src/simix/smx_host_private.h @@ -11,14 +11,19 @@ #include "smx_smurf_private.h" /** @brief Host datatype */ -typedef struct s_smx_host { - char *name; /**< @brief host name if any */ - void *host; /* SURF modeling */ +typedef struct s_smx_host_priv { xbt_swag_t process_list; xbt_dynar_t auto_restart_processes; void *data; /**< @brief user data */ -} s_smx_host_t; +} s_smx_host_priv_t; +static inline smx_host_priv_t SIMIX_host_priv(smx_host_t host){ + return (smx_host_priv_t) xbt_lib_get_level(host, SIMIX_HOST_LEVEL); +} + +#ifdef __cplusplus +extern "C" { +#endif smx_host_t SIMIX_host_create(const char *name, void *workstation, void *data); void SIMIX_host_destroy(void *host); @@ -35,6 +40,7 @@ void SIMIX_host_add_auto_restart_process(smx_host_t host, void SIMIX_host_restart_processes(smx_host_t host); void SIMIX_host_autorestart(smx_host_t host); xbt_dict_t SIMIX_host_get_properties(smx_host_t host); +int SIMIX_host_get_core(smx_host_t host); double SIMIX_host_get_speed(smx_host_t host); double SIMIX_host_get_available_speed(smx_host_t host); int SIMIX_host_get_state(smx_host_t host); @@ -56,6 +62,7 @@ smx_host_t SIMIX_pre_host_get_by_name(smx_simcall_t, const char*); const char* SIMIX_pre_host_self_get_name(smx_simcall_t); const char* SIMIX_pre_host_get_name(smx_simcall_t, smx_host_t); xbt_dict_t SIMIX_pre_host_get_properties(smx_simcall_t, smx_host_t); +int SIMIX_pre_host_get_core(smx_simcall_t, smx_host_t); double SIMIX_pre_host_get_speed(smx_simcall_t, smx_host_t); double SIMIX_pre_host_get_available_speed(smx_simcall_t, smx_host_t); int SIMIX_pre_host_get_state(smx_simcall_t, smx_host_t); @@ -82,5 +89,9 @@ void SIMIX_pre_set_category(smx_simcall_t simcall, smx_action_t action, void SIMIX_set_category(smx_action_t action, const char *category); #endif +#ifdef __cplusplus +} +#endif + #endif