X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ed06d5e442e2b600bc6093a6dcf9e98ab0cab785..31a999f9a0f6420f98301e553cb0e5f0c8b2a1c8:/src/mc/mc_private.h diff --git a/src/mc/mc_private.h b/src/mc/mc_private.h index 4826f4a8d7..a44df30612 100644 --- a/src/mc/mc_private.h +++ b/src/mc/mc_private.h @@ -95,6 +95,13 @@ typedef struct s_mc_snapshot_ignored_data { void* data; } s_mc_snapshot_ignored_data_t, *mc_snapshot_ignored_data_t; +typedef struct s_fd_infos{ + char *filename; + int number; + off_t current_position; + int flags; +}s_fd_infos_t, *fd_infos_t; + typedef struct s_mc_snapshot{ size_t heap_bytes_used; mc_mem_region_t regions[NB_REGIONS]; @@ -106,8 +113,11 @@ typedef struct s_mc_snapshot{ xbt_dynar_t to_ignore; uint64_t hash; xbt_dynar_t ignored_data; + int total_fd; + fd_infos_t *current_fd; } s_mc_snapshot_t; + /** @brief Process index used when no process is available * * The expected behaviour is that if a process index is needed it will fail. @@ -290,7 +300,7 @@ typedef struct mc_procstate{ typedef struct mc_state { unsigned long max_pid; /* Maximum pid at state's creation time */ mc_procstate_t proc_status; /* State's exploration status by process */ - s_smx_action_t internal_comm; /* To be referenced by the internal_req */ + s_smx_synchro_t internal_comm; /* To be referenced by the internal_req */ s_smx_simcall_t internal_req; /* Internal translation of request */ s_smx_simcall_t executed_req; /* The executed request of the state */ int req_num; /* The request number (in the case of a @@ -708,7 +718,7 @@ typedef struct s_local_variable{ typedef struct s_mc_comm_pattern{ int num; - smx_action_t comm; + smx_synchro_t comm; e_smx_comm_type_t type; unsigned long src_proc; unsigned long dst_proc; @@ -749,7 +759,7 @@ static inline mc_call_type mc_get_call_type(smx_simcall_t req) { void get_comm_pattern(xbt_dynar_t communications_pattern, smx_simcall_t request, mc_call_type call_type); void mc_update_comm_pattern(mc_call_type call_type, smx_simcall_t request, int value, xbt_dynar_t current_pattern); -void complete_comm_pattern(xbt_dynar_t list, smx_action_t comm); +void complete_comm_pattern(xbt_dynar_t list, smx_synchro_t comm); void MC_pre_modelcheck_comm_determinism(void); void MC_modelcheck_comm_determinism(void); @@ -899,6 +909,15 @@ void* mc_snapshot_read_pointer_region(void* addr, mc_mem_region_t region) xbt_free(req_str); \ } +/** @brief Dump the stacks of the application processes + * + * This functions is currently not used but it is quite convenient + * to call from the debugger. + * + * Does not work when an application thread is running. + */ +void MC_dump_stacks(FILE* file); + SG_END_DECL() #endif