Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Delete useless functions
authorTakishipp <toufik.boubehziz@gmail.com>
Wed, 12 Jul 2017 13:58:33 +0000 (15:58 +0200)
committerTakishipp <toufik.boubehziz@gmail.com>
Wed, 12 Jul 2017 13:58:33 +0000 (15:58 +0200)
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..c50b8ac 100644 (file)
@@ -1014,22 +1014,4 @@ xbt_dynar_t TRACE_get_node_types ()
 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();
-}
+}
\ No newline at end of file