Make stack popping explicit.
[cdsspec-compiler.git] / main.cc
diff --git a/main.cc b/main.cc
index b38f7ef4816d003f45d876133dacf0dc0d816bab..339b85efd45d427096546cbf8641d3afbb71067f 100644 (file)
--- a/main.cc
+++ b/main.cc
@@ -6,15 +6,16 @@
 #include "common.h"
 #include "threads.h"
 
+#include "datarace.h"
+
 /* global "model" object */
 #include "model.h"
 #include "snapshot-interface.h"
 
-/** The thread_system_next function takes the next step in the
- *  execution.  @return Returns the 1 if there is another step and 0
- *  otherwise.
+/**
+ * The thread_system_next function takes the next step in the execution.
+ * @return Returns the 1 if there is another step and 0 otherwise.
  */
-
 static int thread_system_next(void) {
        Thread *curr, *next;
 
@@ -41,7 +42,6 @@ static int thread_system_next(void) {
 /** The thread_wait_finish method runs the current execution until we
  *  have no more steps to take.
  */
-
 static void thread_wait_finish(void) {
        DBG();
 
@@ -50,11 +50,13 @@ static void thread_wait_finish(void) {
 
 
 /** The real_main function contains the main model checking loop. */
-
-void real_main() {
+static void real_main() {
        thrd_t user_thread;
        ucontext_t main_context;
 
+       //Initialize race detector
+       initRaceDetector();
+
        //Create the singleton SnapshotStack object
        snapshotObject = new SnapshotStack();