X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6330fa8d1410fba5e1560eeaeddf1a7382eaa369..ad9cf3dddccaf1d798a39120a83e79d291a57553:/src/simix/smx_user.c diff --git a/src/simix/smx_user.c b/src/simix/smx_user.c index 918687c279..d42275c9f9 100644 --- a/src/simix/smx_user.c +++ b/src/simix/smx_user.c @@ -82,6 +82,20 @@ 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 available speed of the processor. @@ -1091,36 +1105,37 @@ 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(void* ptr, size_t size, smx_file_t fd) { - return simcall_BODY_file_read(ptr, size, nmemb, stream); + return simcall_BODY_file_read(ptr, 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(const void* ptr, size_t size, + smx_file_t fd) { - return simcall_BODY_file_write(ptr, size, nmemb, stream); + return simcall_BODY_file_write(ptr, 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); } /** @@ -1140,6 +1155,13 @@ xbt_dict_t simcall_file_ls(const char* mount, const char* path) { return simcall_BODY_file_ls(mount, path); } +/** + * \ingroup simix_file_management + * + */ +size_t simcall_file_get_size (smx_file_t fd){ + return simcall_BODY_file_get_size(fd); +} #ifdef HAVE_MC