Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] adding comments to #endif's
authorschnorr <schnorr@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 2 Dec 2010 22:38:36 +0000 (22:38 +0000)
committerschnorr <schnorr@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 2 Dec 2010 22:38:36 +0000 (22:38 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8960 48e7efb5-ca39-0410-a469-dd3cf9ba447f

14 files changed:
src/instr/instr_categories.c
src/instr/instr_config.c
src/instr/instr_interface.c
src/instr/instr_msg_process.c
src/instr/instr_msg_task.c
src/instr/instr_msg_volume.c
src/instr/instr_paje.c
src/instr/instr_private.h
src/instr/instr_resource_utilization.c
src/instr/instr_simdag.c
src/instr/instr_smpi.c
src/instr/instr_smx.c
src/instr/instr_surf.c
src/instr/instr_variables.c

index be11384..4122102 100644 (file)
@@ -51,4 +51,4 @@ void TRACE_msg_category_set(smx_process_t proc, m_task_t task)
 }
 
 
 }
 
 
-#endif
+#endif /* HAVE_TRACING */
index cc42af4..718c92c 100644 (file)
@@ -238,4 +238,4 @@ void TRACE_help (int detailed)
 #undef OPT_TRACING_FILENAME
 #undef OPT_TRACING_PLATFORM_METHOD
 
 #undef OPT_TRACING_FILENAME
 #undef OPT_TRACING_PLATFORM_METHOD
 
-#endif
+#endif /* HAVE_TRACING */
index fbf8457..c134963 100644 (file)
@@ -258,4 +258,4 @@ void TRACE_mark(const char *mark_type, const char *mark_value)
   pajeNewEvent(MSG_get_clock(), mark_type, "0", mark_value);
 }
 
   pajeNewEvent(MSG_get_clock(), mark_type, "0", mark_value);
 }
 
-#endif                          /* HAVE_TRACING */
+#endif /* HAVE_TRACING */
index 164548a..87999ce 100644 (file)
@@ -186,4 +186,4 @@ void TRACE_msg_process_end(m_process_t process)
     pajeDestroyContainer(MSG_get_clock(), "PROCESS", alias);
 }
 
     pajeDestroyContainer(MSG_get_clock(), "PROCESS", alias);
 }
 
-#endif
+#endif /* HAVE_TRACING */
index f73f361..0e978dd 100644 (file)
@@ -240,4 +240,4 @@ void TRACE_msg_task_put_end(void)
   TRACE_category_unset(SIMIX_process_self());
 }
 
   TRACE_category_unset(SIMIX_process_self());
 }
 
-#endif
+#endif /* HAVE_TRACING */
index 97b2331..987ca9e 100644 (file)
@@ -65,4 +65,4 @@ void TRACE_msg_volume_finish(m_task_t task)
               process_alias, task_name);
 }
 
               process_alias, task_name);
 }
 
-#endif
+#endif /* HAVE_TRACING */
index d617480..64f1934 100644 (file)
@@ -361,4 +361,4 @@ void pajeNewEvent(double time, const char *entityType,
           entityType, container, value);
 }
 
           entityType, container, value);
 }
 
-#endif
+#endif /* HAVE_TRACING */
index f6942c9..413555d 100644 (file)
@@ -195,6 +195,5 @@ void TRACE_surf_resource_utilization_release(void);
 void TRACE_sd_task_create(SD_task_t task);
 void TRACE_sd_task_destroy(SD_task_t task);
 
 void TRACE_sd_task_create(SD_task_t task);
 void TRACE_sd_task_destroy(SD_task_t task);
 
-#endif
-
-#endif                          /* PRIVATE_H_ */
+#endif /* HAVE_TRACING */
+#endif /* INSTR_PRIVATE_H_ */
index 87e93bb..8e7e92d 100644 (file)
@@ -402,4 +402,4 @@ void TRACE_surf_resource_utilization_alloc()
   __TRACE_define_method(TRACE_get_platform_method());
   TRACE_method_alloc();
 }
   __TRACE_define_method(TRACE_get_platform_method());
   TRACE_method_alloc();
 }
-#endif
+#endif /* HAVE_TRACING */
index 741ef8d..198098b 100644 (file)
@@ -26,4 +26,4 @@ void TRACE_sd_set_task_category(SD_task_t task, const char *category)
   strcpy(task->category, category);
 }
 
   strcpy(task->category, category);
 }
 
-#endif
+#endif /* HAVE_TRACING */
index 0e247c7..e991af2 100644 (file)
@@ -157,4 +157,4 @@ void TRACE_smpi_recv(int rank, int src, int dst)
   pajeEndLink(SIMIX_get_clock(), "MPI_LINK", "0", "PTP",
               TRACE_smpi_container(dst, str, INSTR_DEFAULT_STR_SIZE), key);
 }
   pajeEndLink(SIMIX_get_clock(), "MPI_LINK", "0", "PTP",
               TRACE_smpi_container(dst, str, INSTR_DEFAULT_STR_SIZE), key);
 }
-#endif
+#endif /* HAVE_TRACING */
index afd8a04..45ed73e 100644 (file)
@@ -50,4 +50,4 @@ void TRACE_smx_action_destroy(smx_action_t act)
   TRACE_surf_resource_utilization_end(act);
 }
 
   TRACE_surf_resource_utilization_end(act);
 }
 
-#endif
+#endif /* HAVE_TRACING */
index 235a890..9921a81 100644 (file)
@@ -273,4 +273,4 @@ void TRACE_surf_action(surf_action_t surf_action, const char *category)
   surf_action->category = xbt_new(char, strlen(category) + 1);
   strncpy(surf_action->category, category, strlen(category) + 1);
 }
   surf_action->category = xbt_new(char, strlen(category) + 1);
   strncpy(surf_action->category, category, strlen(category) + 1);
 }
-#endif
+#endif /* HAVE_TRACING */
index 40dfcf0..2331141 100644 (file)
@@ -67,4 +67,4 @@ void TRACE_user_host_variable(double time, const char *variable,
   }
 }
 
   }
 }
 
-#endif                          /* HAVE_TRACING */
+#endif /* HAVE_TRACING */