X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..4bcfd40036f842e976d329cd0cee7349b8e0f4d6:/src/mc/mc_hash.cpp diff --git a/src/mc/mc_hash.cpp b/src/mc/mc_hash.cpp index 626927fe96..8c23131509 100644 --- a/src/mc/mc_hash.cpp +++ b/src/mc/mc_hash.cpp @@ -29,7 +29,7 @@ public: template void update(T& x) { - state_ = (state_ << 5) + state_ + state_; + state_ = (state_ << 5) + state_ + x; } hash_type value() { @@ -41,14 +41,15 @@ public: hash_type hash(Snapshot const& snapshot) { - XBT_DEBUG("START hash %i", snapshot.num_state); + 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 - XBT_DEBUG("END hash %i", snapshot.num_state); + // 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(); }