summaryrefslogtreecommitdiff
path: root/cpu/o3/fu_pool.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/o3/fu_pool.cc')
-rw-r--r--cpu/o3/fu_pool.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/cpu/o3/fu_pool.cc b/cpu/o3/fu_pool.cc
index 9b6ac15d9..cb7a15061 100644
--- a/cpu/o3/fu_pool.cc
+++ b/cpu/o3/fu_pool.cc
@@ -242,6 +242,20 @@ FUPool::dump()
}
}
+void
+FUPool::switchOut()
+{
+}
+
+void
+FUPool::takeOverFrom()
+{
+ for (int i = 0; i < numFU; i++) {
+ unitBusy[i] = false;
+ }
+ unitsToBeFreed.clear();
+}
+
//
////////////////////////////////////////////////////////////////////////////