summaryrefslogtreecommitdiff
path: root/src/python
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2006-12-02 22:23:46 -0800
committerSteve Reinhardt <stever@eecs.umich.edu>2006-12-02 22:23:46 -0800
commit4c0014a1871292ba2a78e131dcff3c96a4b70225 (patch)
tree6aeaedb2f94f9f3a9693f80bdca50c80c39aee4c /src/python
parent6f94c3c8d755d1cdd3854fde5741305afcd44b19 (diff)
downloadgem5-4c0014a1871292ba2a78e131dcff3c96a4b70225.tar.xz
Fix help strings on GenRepl params.
--HG-- extra : convert_revision : 520814e193b9e86b6410f3ab98d62ed131d295aa
Diffstat (limited to 'src/python')
-rw-r--r--src/python/m5/objects/Repl.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/python/m5/objects/Repl.py b/src/python/m5/objects/Repl.py
index 10892cf6f..b76aa1d6e 100644
--- a/src/python/m5/objects/Repl.py
+++ b/src/python/m5/objects/Repl.py
@@ -6,6 +6,6 @@ class Repl(SimObject):
class GenRepl(Repl):
type = 'GenRepl'
- fresh_res = Param.Int("associativity")
- num_pools = Param.Int("capacity in bytes")
- pool_res = Param.Int("block size in bytes")
+ fresh_res = Param.Int("Fresh pool residency time")
+ num_pools = Param.Int("Number of priority pools")
+ pool_res = Param.Int("Pool residency time")