From: Brian Demsky Date: Mon, 22 Jul 2019 23:35:21 +0000 (-0700) Subject: fix merge issue X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7181e517ee521dd6afa240daf23c6e96d95bca2c;p=c11tester.git fix merge issue --- diff --git a/datarace.h b/datarace.h index c78f5a42..2de2a339 100644 --- a/datarace.h +++ b/datarace.h @@ -46,7 +46,6 @@ void initRaceDetector(); void raceCheckWrite(thread_id_t thread, void *location); void raceCheckRead(thread_id_t thread, const void *location); void recordWrite(thread_id_t thread, void *location); -bool checkDataRaces(); void assert_race(struct DataRace *race); bool hasNonAtomicStore(const void *location); void setAtomicStoreFlag(const void *location); diff --git a/model.cc b/model.cc index 17cba12a..cfbc3b86 100644 --- a/model.cc +++ b/model.cc @@ -266,7 +266,6 @@ bool ModelChecker::next_execution() if (execution->is_deadlocked()) assert_bug("Deadlock detected"); - checkDataRaces(); run_trace_analyses(); }