X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bc0c0b491241f28c083c4b6540944ed604242ba2..10f23d04cb0a60324df495c7b2e57704b57874b8:/src/simix/private.h diff --git a/src/simix/private.h b/src/simix/private.h index bafad3ecf9..8a31f69d8d 100644 --- a/src/simix/private.h +++ b/src/simix/private.h @@ -38,9 +38,9 @@ typedef struct SIMIX_Global { smx_process_t current_process; xbt_dict_t registered_functions; - smx_creation_func_t *create_process_function; - void_f_pvoid_t* kill_process_function; - void_f_pvoid_t* cleanup_process_function; + smx_creation_func_t create_process_function; + void_f_pvoid_t kill_process_function; + void_f_pvoid_t cleanup_process_function; } s_SIMIX_Global_t, *SIMIX_Global_t; extern SIMIX_Global_t simix_global; @@ -48,14 +48,15 @@ extern SIMIX_Global_t simix_global; /******************************* Process *************************************/ typedef struct s_smx_simdata_process { - smx_host_t s_host; /* the host on which the process is running */ - xbt_context_t context; /* the context that executes the scheduler fonction */ + smx_host_t smx_host; /* the host on which the process is running */ + xbt_context_t context; /* the context that executes the scheduler fonction */ int blocked; int suspended; smx_mutex_t mutex; /* mutex on which the process is blocked */ smx_cond_t cond; /* cond on which the process is blocked */ - int argc; /* arguments number if any */ - char **argv; /* arguments table if any */ + int argc; /* arguments number if any */ + char **argv; /* arguments table if any */ + xbt_dict_t properties; } s_smx_simdata_process_t; typedef struct s_smx_process_arg { @@ -66,26 +67,27 @@ typedef struct s_smx_process_arg { int argc; char **argv; double kill_time; + xbt_dict_t properties; } s_smx_process_arg_t, *smx_process_arg_t; /********************************* Mutex and Conditional ****************************/ typedef struct s_smx_mutex { - /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */ - xbt_swag_t sleeping; /* list of sleeping process */ - int using; - /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */ + /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */ + xbt_swag_t sleeping; /* list of sleeping process */ + int using; + /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */ } s_smx_mutex_t; typedef struct s_smx_cond { - - /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */ - xbt_swag_t sleeping; /* list of sleeping process */ - smx_mutex_t mutex; - xbt_fifo_t actions; /* list of actions */ - /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */ + + /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */ + xbt_swag_t sleeping; /* list of sleeping process */ + smx_mutex_t mutex; + xbt_fifo_t actions; /* list of actions */ + /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */ } s_smx_cond_t; @@ -93,8 +95,8 @@ typedef struct s_smx_cond { typedef struct s_smx_simdata_action { surf_action_t surf_action; /* SURF modeling of computation */ - - smx_host_t source; + + smx_host_t source; } s_smx_simdata_action_t; @@ -102,21 +104,25 @@ typedef struct s_smx_simdata_action { /******************************* Configuration support **********************************/ -void simix_config_init(void); /* create the config set, call this before use! */ -void simix_config_finalize(void); /* destroy the config set, call this at cleanup. */ -extern int _simix_init_status; /* 0: beginning of time; - 1: pre-inited (cfg_set created); - 2: inited (running) */ +void simix_config_init(void); /* create the config set, call this before use! */ +void simix_config_finalize(void); /* destroy the config set, call this at cleanup. */ +extern int _simix_init_status; /* 0: beginning of time; + 1: pre-inited (cfg_set created); + 2: inited (running) */ extern xbt_cfg_t _simix_cfg_set; -#define SIMIX_CHECK_HOST() xbt_assert0(surf_workstation_resource->extension_public-> \ +#define SIMIX_CHECK_HOST() xbt_assert0(surf_workstation_model->extension_public-> \ get_state(SIMIX_host_self()->simdata->host)==SURF_CPU_ON,\ "Host failed, you cannot call this function.") -smx_host_t __SIMIX_host_create(const char *name, void *workstation, void *data); +smx_host_t __SIMIX_host_create(const char *name, void *workstation, + void *data); void __SIMIX_host_destroy(smx_host_t host); void __SIMIX_cond_wait(smx_cond_t cond); +void __SIMIX_cond_display_actions(smx_cond_t cond); +void __SIMIX_action_display_conditions(smx_action_t action); + #endif