Merge ktlim@zizzer:/bk/newmem
[gem5.git] / src / cpu / o3 / fu_pool.hh
index f590c41497e07575cefec0784e23ac5073fb9af2..52d83f056f60948928350408e954c0499b871ae8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002-2005 The Regents of The University of Michigan
+ * Copyright (c) 2006 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -24,6 +24,8 @@
  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Kevin Lim
  */
 
 #ifndef __CPU_O3_FU_POOL_HH__
@@ -155,7 +157,10 @@ class FUPool : public SimObject
         return maxIssueLatencies[capability];
     }
 
+    /** Switches out functional unit pool. */
     void switchOut();
+
+    /** Takes over from another CPU's thread. */
     void takeOverFrom();
 };