mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-26 01:05:07 +01:00
Use stdint types everywhere
R=mark at https://breakpad.appspot.com/535002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1121 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
c02002a581
commit
aeffe1056f
117 changed files with 1385 additions and 1379 deletions
|
|
@ -78,8 +78,8 @@ class Stackwalker {
|
|||
const CodeModules* modules,
|
||||
StackFrameSymbolizer* resolver_helper);
|
||||
|
||||
static void set_max_frames(u_int32_t max_frames) { max_frames_ = max_frames; }
|
||||
static u_int32_t max_frames() { return max_frames_; }
|
||||
static void set_max_frames(uint32_t max_frames) { max_frames_ = max_frames; }
|
||||
static uint32_t max_frames() { return max_frames_; }
|
||||
|
||||
protected:
|
||||
// system_info identifies the operating system, NULL or empty if unknown.
|
||||
|
|
@ -104,7 +104,7 @@ class Stackwalker {
|
|||
// * This address is within a loaded module for which we have symbols,
|
||||
// and falls inside a function in that module.
|
||||
// Returns false otherwise.
|
||||
bool InstructionAddressSeemsValid(u_int64_t address);
|
||||
bool InstructionAddressSeemsValid(uint64_t address);
|
||||
|
||||
// The default number of words to search through on the stack
|
||||
// for a return address.
|
||||
|
|
@ -185,7 +185,7 @@ class Stackwalker {
|
|||
|
||||
// The maximum number of frames Stackwalker will walk through.
|
||||
// This defaults to 1024 to prevent infinite loops.
|
||||
static u_int32_t max_frames_;
|
||||
static uint32_t max_frames_;
|
||||
};
|
||||
|
||||
} // namespace google_breakpad
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue