aboutsummaryrefslogtreecommitdiff
path: root/src/processor/stackwalker_sparc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/processor/stackwalker_sparc.cc')
-rw-r--r--src/processor/stackwalker_sparc.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/processor/stackwalker_sparc.cc b/src/processor/stackwalker_sparc.cc
index d1d5d236..7c3c5200 100644
--- a/src/processor/stackwalker_sparc.cc
+++ b/src/processor/stackwalker_sparc.cc
@@ -93,18 +93,18 @@ StackFrame* StackwalkerSPARC::GetCallerFrame(const CallStack* stack) {
// A caller frame must reside higher in memory than its callee frames.
// Anything else is an error, or an indication that we've reached the
// end of the stack.
- u_int64_t stack_pointer = last_frame->context.g_r[30];
+ uint64_t stack_pointer = last_frame->context.g_r[30];
if (stack_pointer <= last_frame->context.g_r[14]) {
return NULL;
}
- u_int32_t instruction;
+ uint32_t instruction;
if (!memory_->GetMemoryAtAddress(stack_pointer + 60,
&instruction) || instruction <= 1) {
return NULL;
}
- u_int32_t stack_base;
+ uint32_t stack_base;
if (!memory_->GetMemoryAtAddress(stack_pointer + 56,
&stack_base) || stack_base <= 1) {
return NULL;