X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2945198502e436f29236715c0baca1efadb64480..43f7ca1cac5ab1858e318fdd6239d0a0c3b3d893:/src/mc/mc_snapshot.cpp diff --git a/src/mc/mc_snapshot.cpp b/src/mc/mc_snapshot.cpp index 7e67049042..e365f98543 100644 --- a/src/mc/mc_snapshot.cpp +++ b/src/mc/mc_snapshot.cpp @@ -9,11 +9,11 @@ #include #include -#include -#include +#include "xbt/asserts.h" +#include "xbt/sysdep.h" #include "src/internal_config.h" -#include "src/smpi/private.h" +#include "src/smpi/include/private.h" #include "src/mc/mc_snapshot.h" #include "src/mc/mc_private.h" @@ -35,7 +35,7 @@ mc_mem_region_t mc_get_snapshot_region( size_t n = snapshot->snapshot_regions.size(); for (size_t i = 0; i != n; ++i) { mc_mem_region_t region = snapshot->snapshot_regions[i].get(); - if (!(region && region->contain(simgrid::mc::remote(addr)))) + if (not(region && region->contain(simgrid::mc::remote(addr)))) continue; if (region->storage_type() == simgrid::mc::StorageType::Privatized) { @@ -132,7 +132,7 @@ int MC_snapshot_region_memcmp( res = 0; else res = memcmp(buffer1, buffer2, size); - if (!stack_alloc) { + if (not stack_alloc) { free(buffer1a); free(buffer2a); } @@ -159,18 +159,13 @@ int MC_snapshot_memcmp( namespace simgrid { namespace mc { -Snapshot::Snapshot(Process* process) : - AddressSpace(process), - num_state(0), - heap_bytes_used(0), - enabled_processes(), - privatization_index(0), - hash(0) -{ - -} - -Snapshot::~Snapshot() +Snapshot::Snapshot(RemoteClient* process, int _num_state) + : AddressSpace(process) + , num_state(_num_state) + , heap_bytes_used(0) + , enabled_processes() + , privatization_index(0) + , hash(0) { } @@ -234,12 +229,12 @@ XBT_TEST_UNIT("page_snapshots", test_per_snpashots, "Test per-page snapshots") static void test_snapshot(bool sparse_checkpoint) { - xbt_test_add("Initialisation"); + xbt_test_add("Initialization"); _sg_mc_sparse_checkpoint = sparse_checkpoint; xbt_assert(xbt_pagesize == getpagesize()); xbt_assert(1 << xbt_pagebits == xbt_pagesize); - std::unique_ptr process(new simgrid::mc::Process(getpid(), -1)); + std::unique_ptr process(new simgrid::mc::RemoteClient(getpid(), -1)); process->init(); mc_model_checker = new ::simgrid::mc::ModelChecker(std::move(process)); @@ -265,15 +260,14 @@ static void test_snapshot(bool sparse_checkpoint) { xbt_test_add("Reading whole region data for %i page(s)", n); const void* read = MC_region_read(®ion, destination, source, byte_size); - xbt_test_assert(!memcmp(source, read, byte_size), "Mismatch in MC_region_read()"); + xbt_test_assert(not memcmp(source, read, byte_size), "Mismatch in MC_region_read()"); xbt_test_add("Reading parts of region data for %i page(s)", n); for(int j=0; j!=100; ++j) { size_t offset = rand() % byte_size; size_t size = rand() % (byte_size - offset); const void* read = MC_region_read(®ion, destination, (const char*) source+offset, size); - xbt_test_assert(!memcmp((char*) source+offset, read, size), - "Mismatch in MC_region_read()"); + xbt_test_assert(not memcmp((char*)source + offset, read, size), "Mismatch in MC_region_read()"); } xbt_test_add("Compare whole region data for %i page(s)", n); @@ -285,8 +279,9 @@ static void test_snapshot(bool sparse_checkpoint) { for(int j=0; j!=100; ++j) { size_t offset = rand() % byte_size; size_t size = rand() % (byte_size - offset); - xbt_test_assert(!MC_snapshot_region_memcmp((char*) source+offset, ®ion, (char*) source+offset, ®ion, size), - "Mismatch in MC_snapshot_region_memcmp()"); + xbt_test_assert( + not MC_snapshot_region_memcmp((char*)source + offset, ®ion, (char*)source + offset, ®ion, size), + "Mismatch in MC_snapshot_region_memcmp()"); } if (n==1) {