From: Brian Norris <banorris@uci.edu>
Date: Tue, 16 Apr 2013 18:13:55 +0000 (-0700)
Subject: model: remove leftover junk
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=634ad19a6e82ddefd9c30d01523fc7fb42540c4c;p=cdsspec-compiler.git

model: remove leftover junk
---

diff --git a/model.cc b/model.cc
index 089d88d..8e94561 100644
--- a/model.cc
+++ b/model.cc
@@ -16,8 +16,6 @@
 #include "execution.h"
 #include "bugmessage.h"
 
-#define INITIAL_THREAD_ID	0
-
 ModelChecker *model;
 
 /** @brief Constructor */
diff --git a/model.h b/model.h
index 89d089d..92592e5 100644
--- a/model.h
+++ b/model.h
@@ -74,9 +74,6 @@ public:
 		trace_analyses.push_back(a);
 	}
 
-	action_list_t * get_actions_on_obj(void * obj, thread_id_t tid);
-	ModelAction * get_last_action(thread_id_t tid) const;
-
 	MEMALLOC
 private:
 	/** The scheduler to use: tracks the running/ready Threads */