X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7dcc77d7a9bf7a4b8f667da338bbed3abd35be98..ee52f84fe512219acf534c4d4654c3df56659e91:/src/simix/smx_user.c diff --git a/src/simix/smx_user.c b/src/simix/smx_user.c index baeed99bf2..0c02e5e001 100644 --- a/src/simix/smx_user.c +++ b/src/simix/smx_user.c @@ -1174,6 +1174,30 @@ int simcall_sem_get_capacity(smx_sem_t sem) return simcall_BODY_sem_get_capacity(sem); } +/** + * \ingroup simix_file_management + * \brief Returns the user data associated to a file. + * + * \param fd A simix file + * \return the user data of this file + */ +void* simcall_file_get_data(smx_file_t fd) +{ + return simcall_BODY_file_get_data(fd); +} + +/** + * \ingroup simix_file_management + * \brief Sets the user data associated to a file. + * + * \param fd A SIMIX file + * \param data The user data to set + */ +void simcall_file_set_data(smx_file_t fd, void *data) +{ + simcall_file_set_data(fd, data); +} + /** * \ingroup simix_file_management * @@ -1287,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); }