From: Arnaud Giersch Date: Tue, 11 Jan 2022 12:50:44 +0000 (+0100) Subject: Remove references to ancient functions. X-Git-Tag: v3.30~90 X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/fe540814c9f0c78e6befe8a877e0c536255a9f88 Remove references to ancient functions. --- diff --git a/include/smpi/smpi.h b/include/smpi/smpi.h index e110d697ae..1bf6d09f15 100644 --- a/include/smpi/smpi.h +++ b/include/smpi/smpi.h @@ -1161,7 +1161,7 @@ XBT_PUBLIC void smpi_sample_3(int global, const char* file, const char* tag); XBT_PUBLIC int smpi_sample_exit(int global, const char* file, const char* tag, int iter_count); /** * Need a public setter for SMPI copy_callback function, so users can define - * their own while still using default SIMIX_copy_callback for S4U copies. + * their own while still using default copy callback for S4U copies. */ XBT_PUBLIC void smpi_comm_set_copy_data_callback(void (*callback)(smx_activity_t, void*, size_t)); diff --git a/src/instr/instr_interface.cpp b/src/instr/instr_interface.cpp index 799940ce8f..e88c3e0da5 100644 --- a/src/instr/instr_interface.cpp +++ b/src/instr/instr_interface.cpp @@ -617,7 +617,7 @@ void TRACE_host_state_declare_value (const char *state, const char *value, const * @param state_name The name of the state previously declared. * @param value_name The new value of the state. * - * @see TRACE_host_state_declare, TRACE_host_push_state, TRACE_host_pop_state, TRACE_host_reset_state + * @see TRACE_host_state_declare, TRACE_host_push_state, TRACE_host_pop_state */ void TRACE_host_set_state(const char* host, const char* state_name, const char* value_name) { @@ -635,7 +635,7 @@ void TRACE_host_set_state(const char* host, const char* state_name, const char* * @param state_name The name of the state previously declared. * @param value_name The value to be pushed. * - * @see TRACE_host_state_declare, TRACE_host_set_state, TRACE_host_pop_state, TRACE_host_reset_state + * @see TRACE_host_state_declare, TRACE_host_set_state, TRACE_host_pop_state */ void TRACE_host_push_state(const char* host, const char* state_name, const char* value_name) { @@ -650,7 +650,7 @@ void TRACE_host_push_state(const char* host, const char* state_name, const char* * @param host The name of the host to be considered. * @param state_name The name of the state to be popped. * - * @see TRACE_host_state_declare, TRACE_host_set_state, TRACE_host_push_state, TRACE_host_reset_state + * @see TRACE_host_state_declare, TRACE_host_set_state, TRACE_host_push_state */ void TRACE_host_pop_state(const char* host, const char* state_name) {