X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5a4767e64e45de2c17e9bbdcdf9c8588dbce80b0..ebf8c46c16a40fde708f840334c9e28e10060d4e:/src/simix/smx_user.c?ds=sidebyside diff --git a/src/simix/smx_user.c b/src/simix/smx_user.c index ae4749f045..46a2e86fcd 100644 --- a/src/simix/smx_user.c +++ b/src/simix/smx_user.c @@ -82,6 +82,31 @@ double simcall_host_get_speed(smx_host_t host) return simcall_BODY_host_get_speed(host); } +/** + * \ingroup simix_host_management + * \brief Returns the number of core of the processor. + * + * \param host A SIMIX host + * \return The number of core + */ +int simcall_host_get_core(smx_host_t host) +{ + return simcall_BODY_host_get_core(host); +} + +/** + * \ingroup simix_host_management + * \brief Returns the list of processes attached to the host. + * + * \param host A SIMIX host + * \return the swag of attached processes + */ +xbt_swag_t simcall_host_get_process_list(smx_host_t host) +{ + return simcall_BODY_host_get_process_list(host); +} + + /** * \ingroup simix_host_management * \brief Returns the available speed of the processor. @@ -1091,63 +1116,61 @@ int simcall_sem_get_capacity(smx_sem_t sem) * \ingroup simix_file_management * */ -double simcall_file_read(void* ptr, size_t size, size_t nmemb, smx_file_t stream) +size_t simcall_file_read(size_t size, smx_file_t fd) { - return simcall_BODY_file_read(ptr, size, nmemb, stream); + return simcall_BODY_file_read(size, fd); } /** * \ingroup simix_file_management * */ -size_t simcall_file_write(const void* ptr, size_t size, size_t nmemb, smx_file_t stream) +size_t simcall_file_write(size_t size, smx_file_t fd) { - return simcall_BODY_file_write(ptr, size, nmemb, stream); + return simcall_BODY_file_write(size, fd); } /** * \ingroup simix_file_management * \brief */ -smx_file_t simcall_file_open(const char* mount, const char* path, const char* mode) +smx_file_t simcall_file_open(const char* mount, const char* path) { - return simcall_BODY_file_open(mount, path, mode); + return simcall_BODY_file_open(mount, path); } /** * \ingroup simix_file_management * */ -int simcall_file_close(smx_file_t fp) +int simcall_file_close(smx_file_t fd) { - return simcall_BODY_file_close(fp); + return simcall_BODY_file_close(fd); } /** * \ingroup simix_file_management * */ -int simcall_file_stat(smx_file_t fd, s_file_stat_t *buf) +int simcall_file_unlink(smx_file_t fd) { - return simcall_BODY_file_stat(fd, buf); + return simcall_BODY_file_unlink(fd); } /** * \ingroup simix_file_management * */ -int simcall_file_unlink(smx_file_t fd) +xbt_dict_t simcall_file_ls(const char* mount, const char* path) { - return simcall_BODY_file_unlink(fd); + return simcall_BODY_file_ls(mount, path); } - /** * \ingroup simix_file_management * */ -xbt_dict_t simcall_file_ls(const char* mount, const char* path) -{ - return simcall_BODY_file_ls(mount, path); +size_t simcall_file_get_size (smx_file_t fd){ + return simcall_BODY_file_get_size(fd); } #ifdef HAVE_MC @@ -1161,9 +1184,9 @@ int simcall_mc_compare_snapshots(void *s1, void *s2){ return simcall_BODY_mc_compare_snapshots(s1, s2); } -int simcall_mc_random(int min, int max) +int simcall_mc_random(void) { - return simcall_BODY_mc_random(min, max); + return simcall_BODY_mc_random(); }