Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] a source file to keep functions to deal with data structures for paje tracing
[simgrid.git] / src / instr / instr_private.h
index a37934e..05d2f1e 100644 (file)
@@ -41,7 +41,8 @@ typedef enum {
   INSTR_ROUTER,
   INSTR_AS,
   INSTR_SMPI,
-  INSTR_MSG,
+  INSTR_MSG_PROCESS,
+  INSTR_MSG_TASK,
 } e_container_types;
 
 typedef struct s_container *container_t;
@@ -107,8 +108,6 @@ void pajeNewEvent(double time, const char *entityType,
 
 /* declaration of instrumentation functions from msg_task_instr.c */
 char *TRACE_task_container(m_task_t task, char *output, int len);
-void TRACE_msg_task_alloc(void);
-void TRACE_msg_task_release(void);
 void TRACE_msg_task_create(m_task_t task);
 void TRACE_msg_task_execute_start(m_task_t task);
 void TRACE_msg_task_execute_end(m_task_t task);
@@ -122,8 +121,6 @@ void TRACE_msg_task_put_end(void);
 char *TRACE_process_alias_container(m_process_t process, m_host_t host,
                                     char *output, int len);
 char *TRACE_process_container(m_process_t process, char *output, int len);
-void TRACE_msg_process_alloc(void);
-void TRACE_msg_process_release(void);
 void TRACE_msg_process_change_host(m_process_t process, m_host_t old_host,
                                    m_host_t new_host);
 void TRACE_msg_process_kill(m_process_t process);
@@ -222,11 +219,15 @@ void TRACE_sd_task_destroy(SD_task_t task);
 /* instr_routing.c */
 container_t newContainer (const char *name, e_container_types kind, container_t father);
 container_t getContainer (const char *name);
-type_t newContainerType (const char *typename, e_entity_types kind, type_t father);
-type_t newEventType (const char *typename, e_entity_types kind, const char *color, type_t father);
-type_t newVariableType (const char *typename, e_entity_types kind, const char *color, type_t father);
-type_t newLinkType (const char *typename, e_entity_types kind, type_t father, type_t source, type_t dest);
-type_t newStateType (const char *typename, e_entity_types kind, type_t father);
+container_t getContainerByName (const char *name);
+container_t getRootContainer (void);
+void instr_paje_init (container_t root);
+type_t getRootType (void);
+type_t getContainerType (const char *name, type_t father);
+type_t getEventType (const char *name, const char *color, type_t father);
+type_t getVariableType (const char *name, const char *color, type_t father);
+type_t getLinkType (const char *name, type_t father, type_t source, type_t dest);
+type_t getStateType (const char *name, type_t father);
 type_t getType (const char *name);
 void destroyContainer (container_t container);
 void instr_routing_define_callbacks (void);