X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/61a837a60b668d9cd79a445eb5f99fd4fd77effc..ee52f84fe512219acf534c4d4654c3df56659e91:/src/simix/smx_user.c diff --git a/src/simix/smx_user.c b/src/simix/smx_user.c index a990f4799d..0c02e5e001 100644 --- a/src/simix/smx_user.c +++ b/src/simix/smx_user.c @@ -1289,7 +1289,7 @@ size_t simcall_storage_get_used_size (const char* name){ } /** - * \ingroup simix_host_management + * \ingroup simix_storage_management * \brief Return the list of storages mounted on an host. * \param host A SIMIX host * \return a dynar containing all storages mounted on the host @@ -1311,9 +1311,9 @@ int simcall_mc_compare_snapshots(void *s1, void *s2){ return simcall_BODY_mc_compare_snapshots(s1, s2); } -int simcall_mc_random(void) +int simcall_mc_random(int min, int max) { - return simcall_BODY_mc_random(); + return simcall_BODY_mc_random(min, max); }