X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a784ea0b57101613a92e9fe1403d224e7ea4d501..7c4bef6efee6ba4a06f99e78ea1198d74dc520fc:/src/simix/libsmx.cpp diff --git a/src/simix/libsmx.cpp b/src/simix/libsmx.cpp index c05655a657..1d1b2a682b 100644 --- a/src/simix/libsmx.cpp +++ b/src/simix/libsmx.cpp @@ -267,16 +267,6 @@ XBT_PUBLIC(void) simcall_process_on_exit(smx_actor_t process, int_f_pvoid_pvoid_ { simcall_BODY_process_on_exit(process, fun, data); } -/** - * \ingroup simix_process_management - * \brief Sets the process to be auto-restarted or not by SIMIX when its host comes back up. - * Will restart the process when the host comes back up if auto_restart is set to 1. - */ - -XBT_PUBLIC(void) simcall_process_auto_restart_set(smx_actor_t process, int auto_restart) -{ - simcall_BODY_process_auto_restart_set(process, auto_restart); -} /** * \ingroup simix_process_management @@ -609,36 +599,18 @@ int simcall_sem_get_capacity(smx_sem_t sem) * \ingroup simix_file_management * */ -sg_size_t simcall_file_read(surf_file_t fd, sg_size_t size, sg_host_t host) -{ - return simcall_BODY_file_read(fd, size, host); -} - -/** - * \ingroup simix_file_management - * - */ -sg_size_t simcall_file_write(surf_file_t fd, sg_size_t size, sg_host_t host) -{ - return simcall_BODY_file_write(fd, size, host); -} - -/** - * \ingroup simix_file_management - * \brief - */ -surf_file_t simcall_file_open(const char* mount, const char* path, sg_storage_t st) +sg_size_t simcall_file_read(surf_file_t fd, sg_size_t size) { - return simcall_BODY_file_open(mount, path, st); + return simcall_BODY_file_read(fd, size); } /** * \ingroup simix_file_management * */ -int simcall_file_close(surf_file_t fd, sg_host_t host) +sg_size_t simcall_file_write(surf_file_t fd, sg_size_t size) { - return simcall_BODY_file_close(fd, host); + return simcall_BODY_file_write(fd, size); } void simcall_run_kernel(std::function const& code)