X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c1f769c019bb761afe1c80b89ad4d6aa066a8d45..c16e65422f592e372f48297d0536b23b7a01d351:/include/simgrid/msg.h diff --git a/include/simgrid/msg.h b/include/simgrid/msg.h index 328ab23933..a29e549ed8 100644 --- a/include/simgrid/msg.h +++ b/include/simgrid/msg.h @@ -70,8 +70,6 @@ typedef enum { } msg_error_t; /* *************************** Network Zones ******************************** */ -#define msg_as_t msg_netzone_t /* portability macro */ - typedef sg_netzone_t msg_netzone_t; XBT_PUBLIC msg_netzone_t MSG_zone_get_root(); @@ -217,7 +215,7 @@ XBT_PUBLIC void MSG_process_auto_restart_set(msg_process_t process, int auto_res * SimGrid simulations run until all non-daemon processes are stopped. */ XBT_PUBLIC void MSG_process_daemonize(msg_process_t process); -/** @brief Imediately changes the host on which this process runs */ +/** @brief Immediately changes the host on which this process runs */ XBT_PUBLIC void MSG_process_migrate(msg_process_t process, msg_host_t host); /** @brief Wait for the completion of a process. * @@ -305,8 +303,12 @@ XBT_PUBLIC void MSG_function_register_default(xbt_main_func_t code); XBT_PUBLIC void MSG_create_environment(const char* file); /** @brief Creates the application described in the provided file */ XBT_PUBLIC void MSG_launch_application(const char* file); + +#ifndef DOXYGEN /** @brief register functions bypassing the parser */ -XBT_PUBLIC void MSG_set_function(const char* host_id, const char* function_name, xbt_dynar_t arguments); +XBT_ATTRIB_DEPRECATED_v329("This function will be removed. Speak up if you need it.") XBT_PUBLIC + void MSG_set_function(const char* host_id, const char* function_name, xbt_dynar_t arguments); +#endif /** @brief A clock (in second). */ XBT_PUBLIC double MSG_get_clock(); @@ -314,7 +316,6 @@ XBT_PUBLIC double MSG_get_clock(); XBT_PUBLIC unsigned long int MSG_get_sent_msg(); /************************** Process handling *********************************/ -XBT_PUBLIC void MSG_process_userdata_init(); XBT_PUBLIC msg_process_t MSG_process_create(const char* name, xbt_main_func_t code, void* data, msg_host_t host); XBT_PUBLIC msg_process_t MSG_process_create_with_arguments(const char* name, xbt_main_func_t code, void* data, msg_host_t host, int argc, char** argv); @@ -426,7 +427,7 @@ XBT_PUBLIC int MSG_sem_would_block(msg_sem_t sem); /** @brief Opaque type representing a barrier identifier */ typedef sg_bar_t msg_bar_t; -/** @brief Initializes a barier, with count elements */ +/** @brief Initializes a barrier, with count elements */ XBT_PUBLIC msg_bar_t MSG_barrier_init(unsigned int count); /** @brief Destroys barrier */ XBT_PUBLIC void MSG_barrier_destroy(msg_bar_t bar);