X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/64aac920c111dafd5b2f10815c817f872f4c4340..539916de848562683cf2e5425d5160c2a43f135a:/src/simix/smx_host_private.h diff --git a/src/simix/smx_host_private.h b/src/simix/smx_host_private.h index 7c37f7f904..33316bd61d 100644 --- a/src/simix/smx_host_private.h +++ b/src/simix/smx_host_private.h @@ -52,28 +52,28 @@ double SIMIX_host_get_power_peak_at(smx_host_t host, int pstate_index); int SIMIX_host_get_nb_pstates(smx_host_t host); double SIMIX_host_get_consumed_energy(smx_host_t host); void SIMIX_host_set_power_peak_at(smx_host_t host, int pstate_index); -smx_action_t SIMIX_host_execute(const char *name, +smx_synchro_t SIMIX_host_execute(const char *name, smx_host_t host, double computation_amount, double priority, double bound, unsigned long affinity_mask); -smx_action_t SIMIX_host_parallel_execute(const char *name, +smx_synchro_t SIMIX_host_parallel_execute(const char *name, int host_nb, smx_host_t *host_list, double *computation_amount, double *communication_amount, double amount, double rate); -void SIMIX_host_execution_destroy(smx_action_t action); -void SIMIX_host_execution_cancel(smx_action_t action); -double SIMIX_host_execution_get_remains(smx_action_t action); -e_smx_state_t SIMIX_host_execution_get_state(smx_action_t action); -void SIMIX_host_execution_set_priority(smx_action_t action, double priority); -void SIMIX_host_execution_set_bound(smx_action_t action, double bound); -void SIMIX_host_execution_set_affinity(smx_action_t action, smx_host_t host, unsigned long mask); +void SIMIX_host_execution_destroy(smx_synchro_t synchro); +void SIMIX_host_execution_cancel(smx_synchro_t synchro); +double SIMIX_host_execution_get_remains(smx_synchro_t synchro); +e_smx_state_t SIMIX_host_execution_get_state(smx_synchro_t synchro); +void SIMIX_host_execution_set_priority(smx_synchro_t synchro, double priority); +void SIMIX_host_execution_set_bound(smx_synchro_t synchro, double bound); +void SIMIX_host_execution_set_affinity(smx_synchro_t synchro, smx_host_t host, unsigned long mask); xbt_dict_t SIMIX_host_get_mounted_storage_list(smx_host_t host); xbt_dynar_t SIMIX_host_get_attached_storage_list(smx_host_t host); -void SIMIX_host_execution_suspend(smx_action_t action); -void SIMIX_host_execution_resume(smx_action_t action); +void SIMIX_host_execution_suspend(smx_synchro_t synchro); +void SIMIX_host_execution_resume(smx_synchro_t synchro); -void SIMIX_post_host_execute(smx_action_t action); +void SIMIX_post_host_execute(smx_synchro_t synchro); #ifdef HAVE_TRACING -void SIMIX_set_category(smx_action_t action, const char *category); +void SIMIX_set_category(smx_synchro_t synchro, const char *category); #endif /* vm related stuff */ smx_host_t SIMIX_vm_create(const char *name, smx_host_t ind_phys_host);