X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5b3677b425b9cc6949c1573d59ac772540cbf4b2..2b7bf2ece143fd83bafa635a83940f58083e7f18:/src/instr/instr_private.h?ds=sidebyside diff --git a/src/instr/instr_private.h b/src/instr/instr_private.h index 908ecd6cc3..1f4b694c29 100644 --- a/src/instr/instr_private.h +++ b/src/instr/instr_private.h @@ -7,16 +7,15 @@ #ifndef INSTR_PRIVATE_H_ #define INSTR_PRIVATE_H_ -#include "instr/instr.h" +#include "simgrid/instr.h" #include "instr/instr_interface.h" #include "internal_config.h" #include "simgrid_config.h" -#ifdef HAVE_TRACING - SG_BEGIN_DECL() /* Need to define function drand48 for Windows */ +/* FIXME: use _drand48() defined in src/surf/random_mgr.c instead */ #ifdef _WIN32 # define drand48() (rand()/(RAND_MAX + 1.0)) #endif @@ -297,6 +296,7 @@ void instr_resume_tracing (void); XBT_PUBLIC(int) TRACE_smpi_is_enabled(void); XBT_PUBLIC(int) TRACE_smpi_is_grouped(void); XBT_PUBLIC(int) TRACE_smpi_is_computing(void); +XBT_PUBLIC(int) TRACE_smpi_is_sleeping(void); XBT_PUBLIC(int) TRACE_smpi_view_internals(void); /* from resource_utilization.c */ @@ -421,6 +421,7 @@ typedef enum{ TRACING_RECV, TRACING_IRECV, TRACING_SENDRECV, + TRACING_TEST, TRACING_WAIT, TRACING_WAITALL, TRACING_WAITANY, @@ -438,6 +439,7 @@ typedef enum{ TRACING_ALLGATHERV, TRACING_REDUCE_SCATTER, TRACING_COMPUTING, + TRACING_SLEEPING, TRACING_SCAN, TRACING_EXSCAN } e_caller_type ; @@ -449,6 +451,7 @@ typedef struct s_instr_extra_data { int send_size; int recv_size; double comp_size; + double sleep_duration; int src; int dst; int root; @@ -461,8 +464,6 @@ typedef struct s_instr_extra_data { SG_END_DECL() -#endif /* HAVE_TRACING */ - #ifdef HAVE_JEDULE #include "instr/jedule/jedule_sd_binding.h" #endif