From: Brian Norris Date: Sat, 26 May 2012 03:28:58 +0000 (-0700) Subject: clockvector: bugfix - fixup vector initialization, size X-Git-Url: http://plrg.eecs.uci.edu/git/?p=cdsspec-compiler.git;a=commitdiff_plain;h=8294305a6c0b9c0aa16485cf1d48f47200a8c8ab clockvector: bugfix - fixup vector initialization, size This fixes a few bugs in ClockVector: - The parent-less vector is the initial-thread creation, so set its vector clock[0] = 1 - The clock vector's data should be initialized to 0 - A clock vector cannot determine its size simply by the size of its parent (+1 if 'act' is THREAD_CREATE); other threads could have been created, giving an inconsistent result here. Instead of trying to be smart about calculating num_threads from the parent, then, I just ask for it globally. --- diff --git a/clockvector.cc b/clockvector.cc index aaf492d..367fa6e 100644 --- a/clockvector.cc +++ b/clockvector.cc @@ -1,5 +1,6 @@ #include #include +#include #include "model.h" #include "action.h" @@ -8,14 +9,13 @@ ClockVector::ClockVector(ClockVector *parent, ModelAction *act) { - num_threads = parent ? parent->num_threads : 1; - if (act && act->get_type() == THREAD_CREATE) - num_threads++; + num_threads = model->get_num_threads(); clock = (int *)MYMALLOC(num_threads * sizeof(int)); + memset(clock, 0, num_threads * sizeof(int)); if (parent) std::memcpy(clock, parent->clock, parent->num_threads * sizeof(int)); else - clock[0] = 0; + clock[0] = 1; if (act) clock[id_to_int(act->get_tid())] = act->get_seq_number();