Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mc: Also remove the process_index
[simgrid.git] / src / mc / inspect / mc_member.cpp
index 5b01e58..74f5e9f 100644 (file)
@@ -19,13 +19,12 @@ namespace dwarf {
  * @return Process address of the given member of the 'object' struct/class
  */
 void* resolve_member(const void* base, simgrid::mc::Type* /*type*/, simgrid::mc::Member* member,
-                     simgrid::mc::AddressSpace* address_space, int process_index)
+                     simgrid::mc::AddressSpace* address_space)
 {
   ExpressionContext state;
   state.frame_base    = nullptr;
   state.cursor        = nullptr;
   state.address_space = address_space;
-  state.process_index = process_index;
 
   ExpressionStack stack;
   stack.push((ExpressionStack::value_type)base);