mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-12-23 23:45:27 +00:00
Fix some comments and parameter names.
Trivial changes; committing for post-facto review. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@890 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
e6a2f54c4d
commit
29138814cc
|
@ -58,9 +58,10 @@ using dwarf2reader::DwarfTag;
|
|||
// Populate a google_breakpad::Module with DWARF debugging information.
|
||||
//
|
||||
// An instance of this class can be provided as a handler to a
|
||||
// dwarf2reader::CompilationUnit DWARF parser. The handler uses the
|
||||
// results of parsing to populate a google_breakpad::Module with
|
||||
// source file, function, and source line information.
|
||||
// dwarf2reader::DIEDispatcher, which can in turn be a handler for a
|
||||
// dwarf2reader::CompilationUnit DWARF parser. The handler uses the results
|
||||
// of parsing to populate a google_breakpad::Module with source file,
|
||||
// function, and source line information.
|
||||
class DwarfCUToModule: public dwarf2reader::RootDIEHandler {
|
||||
struct FilePrivate;
|
||||
public:
|
||||
|
|
|
@ -196,7 +196,7 @@ class CUFixtureBase {
|
|||
// not Finish. If NAME is non-zero, use it as the DW_AT_name
|
||||
// attribute.
|
||||
DIEHandler *StartSpecifiedDIE(DIEHandler *parent, DwarfTag tag,
|
||||
uint64 offset, const char *name = NULL);
|
||||
uint64 specification, const char *name = NULL);
|
||||
|
||||
// Define a function as a child of PARENT with the given name,
|
||||
// address, and size. Call EndAttributes and Finish; one cannot
|
||||
|
|
Loading…
Reference in a new issue