threads_internal: pass the current 'action' to the internal thread system
[model-checker.git] / model.h
diff --git a/model.h b/model.h
index e075ea254640e7f32c0392d027af60a308b329c2..205b8d0bd236989a6131efa45cdefba0f7cc1096 100644 (file)
--- a/model.h
+++ b/model.h
@@ -1,12 +1,49 @@
 #ifndef __MODEL_H__
 #define __MODEL_H__
 
-struct model_checker {
-       struct scheduler *scheduler;
+#include "schedule.h"
+#include "libthreads.h"
+#include "libatomic.h"
+
+#define VALUE_NONE -1
+
+typedef enum action_type {
+       THREAD_CREATE,
+       THREAD_YIELD,
+       THREAD_JOIN,
+       ATOMIC_READ,
+       ATOMIC_WRITE
+} action_type_t;
+
+class ModelAction {
+public:
+       ModelAction(action_type_t type, memory_order order, void *loc, int value);
+       void print(void);
+private:
+       action_type type;
+       memory_order order;
+       void *location;
+       thread_id_t tid;
+       int value;
 };
 
-extern struct model_checker *model;
+class ModelChecker {
+public:
+       ModelChecker();
+       ~ModelChecker();
+       class Scheduler *scheduler;
+       struct thread *system_thread;
+
+       void add_system_thread(struct thread *t);
+       void assign_id(struct thread *t);
+
+       void set_current_action(ModelAction *act) { current_action = act; }
+
+private:
+       int used_thread_id;
+       class ModelAction *current_action;
+};
 
-void model_checker_init(void);
+extern ModelChecker *model;
 
 #endif /* __MODEL_H__ */