X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/99b5293909074fc0bc2348bd719990b91baa365d..b0768dd1aa9363b429a117982079874d055e69e3:/src/simix/private.h diff --git a/src/simix/private.h b/src/simix/private.h index e3fc539264..ac5651690d 100644 --- a/src/simix/private.h +++ b/src/simix/private.h @@ -12,6 +12,7 @@ #include "xbt/fifo.h" #include "xbt/swag.h" #include "xbt/dict.h" +#include "xbt/mallocator.h" #include "xbt/config.h" #include "xbt/function_types.h" #include "xbt/ex_interface.h" @@ -23,27 +24,25 @@ #include "synchro_private.h" #include "simix/context.h" -/********************************** Simix Global ******************************/ - +/* Define only for SimGrid benchmarking purposes */ +#undef TIME_BENCH +/********************************** Simix Global ******************************/ typedef struct s_smx_global { smx_context_factory_t context_factory; - xbt_dict_t host; - xbt_swag_t process_to_run; + xbt_dynar_t process_to_run; xbt_swag_t process_list; xbt_swag_t process_to_destroy; smx_process_t maestro_process; xbt_dict_t registered_functions; smx_creation_func_t create_process_function; - void_f_pvoid_t kill_process_function; + void_pfn_smxprocess_t kill_process_function; void_pfn_smxprocess_t cleanup_process_function; -#ifdef HAVE_LATENCY_BOUND_TRACKING - xbt_dict_t latency_limited_dict; -#endif + xbt_mallocator_t action_mallocator; } s_smx_global_t, *smx_global_t; extern smx_global_t simix_global; - +extern unsigned long simix_process_maxpid; /*********************************** Time ************************************/ @@ -92,6 +91,7 @@ typedef struct s_smx_action { e_smx_comm_type_t type; /* Type of the communication (SIMIX_COMM_SEND or SIMIX_COMM_RECEIVE) */ smx_rdv_t rdv; /* Rendez-vous where the comm is queued */ int refcount; /* Number of processes involved in the cond */ + int detached; /* If detached or not */ /* Surf action data */ surf_action_t surf_comm; /* The Surf communication action encapsulated */ @@ -109,7 +109,8 @@ typedef struct s_smx_action { size_t *dst_buff_size; char copied; - void *data; /* User data associated to communication */ + void* src_data; /* User data associated to communication */ + void* dst_data; } comm; struct { @@ -123,8 +124,11 @@ typedef struct s_smx_action { }; +#ifdef HAVE_LATENCY_BOUND_TRACKING + int latency_limited; +#endif + #ifdef HAVE_TRACING - long long int counter; /* simix action unique identifier for instrumentation */ char *category; /* simix action category for instrumentation */ #endif } s_smx_action_t; @@ -155,6 +159,7 @@ void SIMIX_context_mod_exit(void); /* All factories init */ void SIMIX_ctx_thread_factory_init(smx_context_factory_t *factory); void SIMIX_ctx_sysv_factory_init(smx_context_factory_t *factory); +void SIMIX_ctx_raw_factory_init(smx_context_factory_t *factory); /* ****************************** */ /* context manipulation functions */ @@ -226,9 +231,9 @@ static XBT_INLINE void SIMIX_context_suspend(smx_context_t context) /** \brief executes all the processes (in parallel if possible) - \param processes the swag of processes to execute + \param processes the dynar of processes to execute */ -static XBT_INLINE void SIMIX_context_runall(xbt_swag_t processes) +static XBT_INLINE void SIMIX_context_runall(xbt_dynar_t processes) { (*(simix_global->context_factory->runall)) (processes); } @@ -255,4 +260,14 @@ static XBT_INLINE void* SIMIX_context_get_data(smx_context_t context) return (*(simix_global->context_factory->get_data))(context); } +/** + \brief returns the thread's pid running the current context + \return The pid + */ +static XBT_INLINE int SIMIX_context_get_thread_id(void) +{ + return (*(simix_global->context_factory->get_thread_id))(); +} + +XBT_PUBLIC(int) SIMIX_process_get_maxpid(void); #endif