X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2b4c4cf7533ad4a7405c807132943c6139233cb2..e7173457dce01a608824b72d2e4ff62572d51d13:/src/mc/mc_snapshot.h diff --git a/src/mc/mc_snapshot.h b/src/mc/mc_snapshot.h index 8d9ce91aa0..2c9784838e 100644 --- a/src/mc/mc_snapshot.h +++ b/src/mc/mc_snapshot.h @@ -4,8 +4,8 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#ifndef MC_SNAPSHOT_H -#define MC_SNAPSHOT_H +#ifndef SIMGRID_MC_SNAPSHOT_H +#define SIMGRID_MC_SNAPSHOT_H #include // off_t #include // size_t @@ -104,16 +104,16 @@ typedef struct s_mc_stack_frame { /** Stack pointer */ unw_word_t sp; unw_word_t frame_base; - dw_frame_t frame; + mc_frame_t frame; std::string frame_name; unw_cursor_t unw_cursor; } s_mc_stack_frame_t, *mc_stack_frame_t; typedef struct s_local_variable{ - dw_frame_t subprogram; + mc_frame_t subprogram; unsigned long ip; std::string name; - dw_type_t type; + mc_type_t type; void *address; int region; } s_local_variable_t, *local_variable_t;