mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-13 23:56:29 +00:00
Breakpad Linux dumper: Don't be silly about global functions.
Yes, classes are useful. But that doesn't mean that every function has to gratuitously become a member function. The Google C++ Style Guide does not require this silliness, since the function is in the google_breakpad namespace anyway. a=jimblandy, r=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@519 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
@@ -355,8 +355,7 @@ std::string BaseFileName(const std::string &filename) {
|
||||
|
||||
namespace google_breakpad {
|
||||
|
||||
bool DumpSymbols::WriteSymbolFile(const std::string &obj_file,
|
||||
FILE *sym_file) {
|
||||
bool WriteSymbolFile(const std::string &obj_file, FILE *sym_file) {
|
||||
int obj_fd = open(obj_file.c_str(), O_RDONLY);
|
||||
if (obj_fd < 0) {
|
||||
fprintf(stderr, "Failed to open ELF file '%s': %s\n",
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
// Copyright (c) 2006, Google Inc.
|
||||
// -*- mode: c++ -*-
|
||||
|
||||
// Copyright (c) 2010, Google Inc.
|
||||
// All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
@@ -38,11 +40,10 @@
|
||||
|
||||
namespace google_breakpad {
|
||||
|
||||
class DumpSymbols {
|
||||
public:
|
||||
bool WriteSymbolFile(const std::string &obj_file,
|
||||
FILE *sym_file);
|
||||
};
|
||||
// Find all the debugging information in OBJ_FILE, an ELF executable
|
||||
// or shared library, and write it to SYM_FILE in the Breakpad symbol
|
||||
// file format.
|
||||
bool WriteSymbolFile(const std::string &obj_file, FILE *sym_file);
|
||||
|
||||
} // namespace google_breakpad
|
||||
|
||||
|
||||
Reference in New Issue
Block a user