diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-08-14 19:25:07 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-08-14 19:25:07 -0400 |
commit | 5bd07f98ed8b69e93345df4a7e626376fab57d8a (patch) | |
tree | 676422af140c7e446eb7c96808698965a55683cf /src/base/loader | |
parent | a04552ce86d0c4311d70abe78035bd8a52f1a14b (diff) | |
download | gem5-5bd07f98ed8b69e93345df4a7e626376fab57d8a.tar.xz |
Fix up doxygen.
--HG--
rename : docs/footer.html => src/doxygen/footer.html
rename : docs/stl.hh => src/doxygen/stl.hh
extra : convert_revision : 2b2e5637930843c1be07deaa708fd4126213cda2
Diffstat (limited to 'src/base/loader')
-rw-r--r-- | src/base/loader/symtab.hh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/base/loader/symtab.hh b/src/base/loader/symtab.hh index 55ff0c86f..184c0a996 100644 --- a/src/base/loader/symtab.hh +++ b/src/base/loader/symtab.hh @@ -104,11 +104,11 @@ class SymbolTable /// Find the nearest symbol equal to or less than the supplied /// address (e.g., the label for the enclosing function). - /// @param address The address to look up. - /// @param symbol Return reference for symbol string. - /// @param sym_address Return reference for symbol address. - /// @param next_sym_address Address of following symbol (for - /// determining valid range of symbol). + /// @param addr The address to look up. + /// @param symbol Return reference for symbol string. + /// @param symaddr Return reference for symbol address. + /// @param nextaddr Address of following symbol (for + /// determining valid range of symbol). /// @retval True if a symbol was found. bool findNearestSymbol(Addr addr, std::string &symbol, Addr &symaddr, @@ -126,7 +126,7 @@ class SymbolTable } /// Overload for findNearestSymbol() for callers who don't care - /// about next_sym_address. + /// about nextaddr. bool findNearestSymbol(Addr addr, std::string &symbol, Addr &symaddr) const { |