Add support for converting normal writes into ModelActions after the fact
[c11tester.git] / datarace.h
index 67d58e7c3c12cd46387391c132c62a945b911685..c78f5a424929d89d3cedc805006f1b401790a211 100644 (file)
@@ -48,6 +48,9 @@ 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);
+void getStoreThreadAndClock(const void *address, thread_id_t * thread, modelclock_t * clock);
 
 /**
  * @brief A record of information for detecting data races