Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill the MSG_paje_output() function. It's a noop since 2 years
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 2 Mar 2010 00:29:17 +0000 (00:29 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 2 Mar 2010 00:29:17 +0000 (00:29 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7155 48e7efb5-ca39-0410-a469-dd3cf9ba447f

ChangeLog
examples/msg/masterslave/masterslave_bypass.c
examples/msg/masterslave/masterslave_failure.c
examples/msg/masterslave/masterslave_forwarder.c
examples/msg/masterslave/masterslave_mailbox.c
examples/msg/priority/priority.c
examples/msg/sendrecv/sendrecv.c
examples/msg/suspend/suspend.c
include/msg/msg.h
src/msg/global.c

index e59ed15..dcb6a2c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,6 +18,7 @@ SimGrid (3.3.5-svn) unstable; urgency=low
     Give the specific trace file as argument of each process, 
       and call MSG_action_trace_run(NULL)
     You can still have one merged file for each processes.
+  * Kill the MSG_paje_output() function. It's a noop since 2 years.
       
  -- Da SimGrid team <simgrid-devel@lists.gforge.inria.fr>
 
index df34e56..44cb2bf 100644 (file)
@@ -285,7 +285,6 @@ MSG_error_t test_all(void)
 
   /*  Simulation setting */
   MSG_set_channel_number(MAX_CHANNEL);
-  MSG_paje_output("msg_test.trace");
   surf_parse = surf_parse_bypass_platform;
   MSG_create_environment(NULL);
 
index dae8413..65148e3 100644 (file)
@@ -185,7 +185,6 @@ MSG_error_t test_all(const char *platform_file, const char *application_file)
   /* MSG_config("workstation_model","KCCFLN05"); */
   {                             /*  Simulation setting */
     MSG_set_channel_number(MAX_CHANNEL);
-    MSG_paje_output("msg_test.trace");
     MSG_create_environment(platform_file);
   }
   {                             /*   Application deployment */
index 0f791ce..58f6b30 100644 (file)
@@ -182,7 +182,6 @@ MSG_error_t test_all(const char *platform_file, const char *application_file)
   /* MSG_config("surf_workstation_model","KCCFLN05"); */
   {                             /*  Simulation setting */
     MSG_set_channel_number(MAX_CHANNEL);
-    MSG_paje_output("msg_test.trace");
     MSG_create_environment(platform_file);
   }
   {                             /*   Application deployment */
index b150334..4bdd10f 100644 (file)
@@ -103,7 +103,6 @@ MSG_error_t test_all(const char *platform_file,
   /* MSG_config("surf_workstation_model","KCCFLN05"); */
   {                            /*  Simulation setting */
     MSG_set_channel_number(0);
-    MSG_paje_output("msg_test.trace");
     MSG_create_environment(platform_file);
   }
   {                            /*   Application deployment */
index 8eaf731..63162cf 100644 (file)
@@ -46,7 +46,6 @@ static MSG_error_t test_all(const char *platform_file,
 
   {                             /*  Simulation setting */
     MSG_set_channel_number(1);
-    MSG_paje_output("msg_test.trace");
     MSG_create_environment(platform_file);
   }
   {                             /*   Application deployment */
index 58b6b09..68deabd 100644 (file)
@@ -133,7 +133,6 @@ MSG_error_t test_all(const char *platform_file, const char *application_file)
 
   /*  Simulation setting */
   MSG_set_channel_number(MAX_CHANNEL);
-  MSG_paje_output("msg_test.trace");
   MSG_create_environment(platform_file);
 
   /*   Application deployment */
index 0f0ca9c..b5459b7 100644 (file)
@@ -53,7 +53,6 @@ static MSG_error_t test_all(const char *platform_file,
 
   {                             /*  Simulation setting */
     MSG_set_channel_number(MAX_CHANNEL);
-    MSG_paje_output("msg_test.trace");
     MSG_create_environment(platform_file);
   }
   {                             /*   Application deployment */
index 78dc604..409a59d 100644 (file)
@@ -27,7 +27,6 @@ XBT_PUBLIC(void) MSG_function_register(const char *name,
 XBT_PUBLIC(void) MSG_function_register_default(xbt_main_func_t code);
 XBT_PUBLIC(xbt_main_func_t) MSG_get_registered_function(const char *name);
 XBT_PUBLIC(void) MSG_launch_application(const char *file);
-XBT_PUBLIC(void) MSG_paje_output(const char *filename);
 
 XBT_PUBLIC(double) MSG_get_clock(void);
 XBT_PUBLIC(unsigned long int) MSG_get_sent_msg(void);
index 9325a30..9f23a8b 100644 (file)
@@ -81,14 +81,6 @@ void MSG_global_init(int *argc, char **argv)
   return;
 }
 
-/** \ingroup msg_easier_life
- * \brief Traces MSG events in the Paje format.
- */
-
-void MSG_paje_output(const char *filename)
-{
-}
-
 /** \defgroup m_channel_management    Understanding channels
  *  \brief This section briefly describes the channel notion of MSG
  *  (#m_channel_t).