summaryrefslogtreecommitdiff
path: root/src/base/trie.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2012-04-14 23:22:57 -0700
committerGabe Black <gblack@eecs.umich.edu>2012-04-14 23:22:57 -0700
commitd6031d72df091a71567a7f43649d62b24c80f496 (patch)
tree420b83ad13905d485d8ba108f0da609a24518522 /src/base/trie.hh
parentc4c27ded423b9beb0e361421ca83fe0eac06a0d1 (diff)
downloadgem5-d6031d72df091a71567a7f43649d62b24c80f496.tar.xz
sim: Update some comments in trie.hh that were meant to go in the last change.
Diffstat (limited to 'src/base/trie.hh')
-rw-r--r--src/base/trie.hh10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/base/trie.hh b/src/base/trie.hh
index 64b710daf..a5aca2c6f 100644
--- a/src/base/trie.hh
+++ b/src/base/trie.hh
@@ -148,10 +148,10 @@ class Trie
/**
* Method which looks up the Handle corresponding to a particular key. This
- * is useful if you want to delete the Node corresponding to a key since
- * the "remove" function takes a Node as its argument.
+ * is useful if you want to delete the Handle corresponding to a key since
+ * the "remove" function takes a Handle as its argument.
* @param key The key to look up.
- * @return The first Node matching this key, or NULL if none was found.
+ * @return The first Handle matching this key, or NULL if none was found.
*/
Handle
lookupHandle(Key key)
@@ -178,7 +178,7 @@ class Trie
* @param key The key which can later be used to look up this value.
* @param width How many bits of the key (from msb) should be used.
* @param val A pointer to the value to store in the trie.
- * @return A pointer to the Node which holds this value.
+ * @return A Handle corresponding to this value.
*/
Handle
insert(Key key, unsigned width, Value *val)
@@ -274,7 +274,7 @@ class Trie
/**
* Method to delete a value from the trie.
- * @param node A pointer to the Node to remove.
+ * @param node A Handle to remove.
* @return The Value pointer from the removed entry.
*/
Value *