X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/77bbf3027c4240a2e833209a3a3f186589da8577..351f33cd435ca4f01717f0b8a4fe7a77ba16edbf:/src/mc/mc_hash.cpp diff --git a/src/mc/mc_hash.cpp b/src/mc/mc_hash.cpp index 9a77423c2e..7cdd3fa073 100644 --- a/src/mc/mc_hash.cpp +++ b/src/mc/mc_hash.cpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2014-2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2014-2019. The SimGrid Team. All rights reserved. */ /* 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. */ @@ -13,7 +12,7 @@ #include "mc/datatypes.h" #include "src/mc/mc_hash.hpp" #include "src/mc/mc_private.hpp" -#include "src/mc/mc_snapshot.hpp" +#include "src/mc/sosp/mc_snapshot.hpp" #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_hash, mc, "Logging specific to mc_hash"); @@ -30,7 +29,7 @@ public: template void update(T& x) { - state_ = (state_ << 5) + state_ + state_; + state_ = (state_ << 5) + state_ + x; } hash_type value() { @@ -44,11 +43,12 @@ hash_type hash(Snapshot const& snapshot) { XBT_DEBUG("START hash %i", snapshot.num_state); djb_hash hash; - // TODO, nb_processes - // TODO, heap_bytes_used - // TODO, root variables - // TODO, basic stack frame information - // TODO, stack frame local variables + // TODO: + // * nb_processes + // * heap_bytes_used + // * root variables + // * basic stack frame information + // * stack frame local variables XBT_DEBUG("END hash %i", snapshot.num_state); return hash.value(); }