X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/74c1bf2b26c5a3aa0d8c29674dc12993e7c0de15..5c193dfc57256298e9b04e4a2fe887135ca49b86:/src/mc/mc_checkpoint.cpp diff --git a/src/mc/mc_checkpoint.cpp b/src/mc/mc_checkpoint.cpp index 9c3f060d14..44d50918eb 100644 --- a/src/mc/mc_checkpoint.cpp +++ b/src/mc/mc_checkpoint.cpp @@ -288,8 +288,7 @@ static void fill_local_variables_values(mc_stack_frame_t stack_frame, if (not scope || not scope->range.contain(stack_frame->ip)) return; - for(simgrid::mc::Variable& current_variable : - scope->variables) { + for (simgrid::mc::Variable& current_variable : scope->variables) { if (not valid_variable(¤t_variable, scope, (void*)stack_frame->ip)) continue; @@ -331,7 +330,7 @@ static void fill_local_variables_values(mc_stack_frame_t stack_frame, } // Recursive processing of nested scopes: - for(simgrid::mc::Frame& nested_scope : scope->scopes) + for (simgrid::mc::Frame& nested_scope : scope->scopes) fill_local_variables_values( stack_frame, &nested_scope, process_index, result); } @@ -453,7 +452,7 @@ static void snapshot_handle_ignore(simgrid::mc::Snapshot* snapshot) } // Zero the memory: - for(auto const& region : mc_model_checker->process().ignored_regions()) + for (auto const& region : mc_model_checker->process().ignored_regions()) snapshot->process()->clear_bytes(remote(region.addr), region.size); } @@ -588,7 +587,7 @@ std::shared_ptr take_snapshot(int num_state) static inline void restore_snapshot_regions(simgrid::mc::Snapshot* snapshot) { - for(std::unique_ptr const& region : snapshot->snapshot_regions) { + for (std::unique_ptr const& region : snapshot->snapshot_regions) { // For privatized, variables we decided it was not necessary to take the snapshot: if (region) restore(region.get());