mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-31 11:44:48 +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,7 +78,7 @@ struct StackFrameX86 : public StackFrame {
|
|||
~StackFrameX86();
|
||||
|
||||
// Overriden to return the return address as saved on the stack.
|
||||
virtual u_int64_t ReturnAddress() const;
|
||||
virtual uint64_t ReturnAddress() const;
|
||||
|
||||
// Register state. This is only fully valid for the topmost frame in a
|
||||
// stack. In other frames, the values of nonvolatile registers may be
|
||||
|
|
@ -151,7 +151,7 @@ struct StackFrameAMD64 : public StackFrame {
|
|||
StackFrameAMD64() : context(), context_validity(CONTEXT_VALID_NONE) {}
|
||||
|
||||
// Overriden to return the return address as saved on the stack.
|
||||
virtual u_int64_t ReturnAddress() const;
|
||||
virtual uint64_t ReturnAddress() const;
|
||||
|
||||
// Register state. This is only fully valid for the topmost frame in a
|
||||
// stack. In other frames, which registers are present depends on what
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue