X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/163f8696544cfc2c11a545b9ed06011903780031..1ae0d58b310e05925905ad20598f34d4d9f708ef:/src/simix/smx_host_private.hpp diff --git a/src/simix/smx_host_private.hpp b/src/simix/smx_host_private.hpp index aff0d7f143..22aec6d730 100644 --- a/src/simix/smx_host_private.hpp +++ b/src/simix/smx_host_private.hpp @@ -15,12 +15,13 @@ XBT_PRIVATE void SIMIX_host_autorestart(sg_host_t host); XBT_PRIVATE void SIMIX_execution_finish(smx_activity_t synchro); -XBT_PRIVATE void SIMIX_set_category(smx_activity_t synchro, const char* category); +XBT_PRIVATE void SIMIX_set_category(smx_activity_t synchro, std::string category); XBT_PRIVATE boost::intrusive_ptr -SIMIX_execution_start(const char* name, double flops_amount, double priority, double bound, sg_host_t host); +SIMIX_execution_start(std::string name, std::string category, double flops_amount, double priority, double bound, + sg_host_t host); XBT_PRIVATE boost::intrusive_ptr -SIMIX_execution_parallel_start(const char* name, int host_nb, sg_host_t* host_list, double* flops_amount, +SIMIX_execution_parallel_start(std::string name, int host_nb, sg_host_t* host_list, double* flops_amount, double* bytes_amount, double rate, double timeout); #endif