datarace: simplify raceCheck{Read,Write}() function interfaces
[model-checker.git] / datarace.h
index 6c92203cfd4e7d7b234dffd0bc75ef62bbe60dea..78903d336832bb7439d4a8ab61799dd48f2ceed5 100644 (file)
@@ -42,8 +42,8 @@ struct DataRace {
 #define MASK16BIT 0xffff
 
 void initRaceDetector();
-void raceCheckWrite(thread_id_t thread, void *location, ClockVector *currClock);
-void raceCheckRead(thread_id_t thread, const void *location, ClockVector *currClock);
+void raceCheckWrite(thread_id_t thread, void *location);
+void raceCheckRead(thread_id_t thread, const void *location);
 bool checkDataRaces();
 void assert_race(struct DataRace *race);