Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #199 from Takishipp/clear_fct
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Thu, 13 Jul 2017 09:11:50 +0000 (11:11 +0200)
committerGitHub <noreply@github.com>
Thu, 13 Jul 2017 09:11:50 +0000 (11:11 +0200)
Delete useless functions

include/simgrid/instr.h
src/instr/instr_interface.cpp

index 83186e9..80cb735 100644 (file)
@@ -77,8 +77,6 @@ XBT_PUBLIC(void) TRACE_host_pop_state (const char *host, const char *state);
 /* for creating graph configuration files for Viva by hand */
 XBT_PUBLIC(xbt_dynar_t) TRACE_get_node_types ();
 XBT_PUBLIC(xbt_dynar_t) TRACE_get_edge_types ();
-XBT_PUBLIC(void) TRACE_pause ();
-XBT_PUBLIC(void) TRACE_resume ();
 
 SG_END_DECL()
 
index 246fce4..43c2b18 100644 (file)
@@ -1015,21 +1015,3 @@ xbt_dynar_t TRACE_get_edge_types ()
 {
   return instr_dict_to_dynar (trivaEdgeTypes);
 }
-
-/** \ingroup TRACE_API
- *  \brief Pauses all tracing activities.
- *  \see TRACE_resume
- */
-void TRACE_pause ()
-{
-  instr_pause_tracing();
-}
-
-/** \ingroup TRACE_API
- *  \brief Resumes all tracing activities.
- *  \see TRACE_pause
- */
-void TRACE_resume ()
-{
-  instr_resume_tracing();
-}