X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/281f8c29e177852dcb1591fc31e363e1176857c8..11af893:/src/simix/smx_user.c diff --git a/src/simix/smx_user.c b/src/simix/smx_user.c index 5c8bfea28c..54acb6f247 100644 --- a/src/simix/smx_user.c +++ b/src/simix/smx_user.c @@ -1,6 +1,6 @@ /* smx_user.c - public interface to simix */ -/* Copyright (c) 2010-2013. The SimGrid Team. +/* Copyright (c) 2010-2014. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -15,11 +15,11 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix); /* generate strings from the enumeration values */ static const char* simcall_names[] = { -SIMCALL_LIST(SIMCALL_STRING_TYPE, SIMCALL_SEP_COMMA) +#include "simcalls_generated_string.c" [SIMCALL_NONE] = "NONE" }; -SIMCALL_LIST(SIMCALL_FUNC, SIMCALL_SEP_NOTHING) +#include "simcalls_generated_body.c" /** * \ingroup simix_host_management @@ -253,6 +253,8 @@ double simcall_host_get_consumed_energy(smx_host_t host) * \param host SIMIX host where the action will be executed * \param computation_amount amount Computation amount (in bytes) * \param priority computation priority + * \param bound + * \param affinity_mask * \return A new SIMIX execution action */ smx_action_t simcall_host_execute(const char *name, smx_host_t host, @@ -1004,70 +1006,38 @@ smx_action_t simcall_comm_isend(smx_rdv_t rdv, double task_size, double rate, src_buff_size, match_fun, clean_fun, data, detached); } + /** * \ingroup simix_comm_management */ void simcall_comm_recv(smx_rdv_t rdv, void *dst_buff, size_t * dst_buff_size, - int (*match_fun)(void *, void *, smx_action_t), void *data, double timeout) + int (*match_fun)(void *, void *, smx_action_t), + void *data, double timeout, double rate) { xbt_assert(isfinite(timeout), "timeout is not finite!"); xbt_assert(rdv, "No rendez-vous point defined for recv"); if (MC_is_active()) { /* the model-checker wants two separate simcalls */ - smx_action_t comm = NULL; /* MC needs the comm to be set to NULL during the simcall */ - comm = simcall_comm_irecv(rdv, dst_buff, dst_buff_size, - match_fun, data); + smx_action_t comm = simcall_comm_irecv(rdv, dst_buff, dst_buff_size, + match_fun, data, rate); simcall_comm_wait(comm, timeout); - comm = NULL; } else { simcall_BODY_comm_recv(rdv, dst_buff, dst_buff_size, - match_fun, data, timeout); - } -} -/** - * \ingroup simix_comm_management - */ -smx_action_t simcall_comm_irecv(smx_rdv_t rdv, void *dst_buff, size_t *dst_buff_size, - int (*match_fun)(void *, void *, smx_action_t), void *data) -{ - xbt_assert(rdv, "No rendez-vous point defined for irecv"); - - return simcall_BODY_comm_irecv(rdv, dst_buff, dst_buff_size, - match_fun, data); -} - - -/** - * \ingroup simix_comm_management - */ -void simcall_comm_recv_bounded(smx_rdv_t rdv, void *dst_buff, size_t * dst_buff_size, - int (*match_fun)(void *, void *, smx_action_t), void *data, double timeout, double rate) -{ - xbt_assert(isfinite(timeout), "timeout is not finite!"); - xbt_assert(rdv, "No rendez-vous point defined for recv"); - - if (MC_is_active()) { - /* the model-checker wants two separate simcalls */ - smx_action_t comm = simcall_comm_irecv_bounded(rdv, dst_buff, dst_buff_size, - match_fun, data, rate); - simcall_comm_wait(comm, timeout); - } - else { - simcall_BODY_comm_recv_bounded(rdv, dst_buff, dst_buff_size, match_fun, data, timeout, rate); } } /** * \ingroup simix_comm_management */ -smx_action_t simcall_comm_irecv_bounded(smx_rdv_t rdv, void *dst_buff, size_t *dst_buff_size, - int (*match_fun)(void *, void *, smx_action_t), void *data, double rate) +smx_action_t simcall_comm_irecv(smx_rdv_t rdv, void *dst_buff, size_t *dst_buff_size, + int (*match_fun)(void *, void *, smx_action_t), + void *data, double rate) { xbt_assert(rdv, "No rendez-vous point defined for irecv"); - return simcall_BODY_comm_irecv_bounded(rdv, dst_buff, dst_buff_size, + return simcall_BODY_comm_irecv(rdv, dst_buff, dst_buff_size, match_fun, data, rate); } @@ -1419,7 +1389,7 @@ void simcall_file_set_data(smx_file_t fd, void *data) * \ingroup simix_file_management * */ -sg_storage_size_t simcall_file_read(smx_file_t fd, sg_storage_size_t size) +sg_size_t simcall_file_read(smx_file_t fd, sg_size_t size) { return simcall_BODY_file_read(fd, size); } @@ -1428,7 +1398,7 @@ sg_storage_size_t simcall_file_read(smx_file_t fd, sg_storage_size_t size) * \ingroup simix_file_management * */ -sg_storage_size_t simcall_file_write(smx_file_t fd, sg_storage_size_t size) +sg_size_t simcall_file_write(smx_file_t fd, sg_size_t size) { return simcall_BODY_file_write(fd, size); } @@ -1472,10 +1442,18 @@ xbt_dict_t simcall_file_ls(const char* mount, const char* path) * \ingroup simix_file_management * */ -sg_storage_size_t simcall_file_get_size (smx_file_t fd){ +sg_size_t simcall_file_get_size(smx_file_t fd){ return simcall_BODY_file_get_size(fd); } +/** + * \ingroup simix_file_management + * + */ +sg_size_t simcall_file_tell(smx_file_t fd){ + return simcall_BODY_file_tell(fd); +} + /** * \ingroup simix_file_management * @@ -1485,6 +1463,14 @@ xbt_dynar_t simcall_file_get_info(smx_file_t fd) return simcall_BODY_file_get_info(fd); } +/** + * \ingroup simix_file_management + * + */ +int simcall_file_seek(smx_file_t fd, sg_size_t offset, int origin){ + return simcall_BODY_file_seek(fd, offset, origin); +} + /** * \ingroup simix_file_management * @@ -1498,9 +1484,9 @@ void simcall_storage_file_rename(smx_storage_t storage, const char* src, const * \ingroup simix_storage_management * \brief Returns the free space size on a given storage element. * \param storage name - * \return Return the free space size on a given storage element (as sg_storage_size_t) + * \return Return the free space size on a given storage element (as sg_size_t) */ -sg_storage_size_t simcall_storage_get_free_size (const char* name){ +sg_size_t simcall_storage_get_free_size (const char* name){ return simcall_BODY_storage_get_free_size(name); } @@ -1508,9 +1494,9 @@ sg_storage_size_t simcall_storage_get_free_size (const char* name){ * \ingroup simix_storage_management * \brief Returns the used space size on a given storage element. * \param storage name - * \return Return the used space size on a given storage element (as sg_storage_size_t) + * \return Return the used space size on a given storage element (as sg_size_t) */ -sg_storage_size_t simcall_storage_get_used_size (const char* name){ +sg_size_t simcall_storage_get_used_size (const char* name){ return simcall_BODY_storage_get_used_size(name); }