Fix naming.
This commit is contained in:
@@ -116,7 +116,7 @@ Architecture::CreateStackTrace(Team* team,
|
|||||||
// attempt to continue building it from where it left off.
|
// attempt to continue building it from where it left off.
|
||||||
if (stackTrace->CountFrames() > 0) {
|
if (stackTrace->CountFrames() > 0) {
|
||||||
nextFrame = stackTrace->FrameAt(stackTrace->CountFrames() - 1);
|
nextFrame = stackTrace->FrameAt(stackTrace->CountFrames() - 1);
|
||||||
cpuState = nextFrame->GetPreviousCpuState();
|
cpuState = nextFrame->PreviousCpuState();
|
||||||
}
|
}
|
||||||
|
|
||||||
while (cpuState != NULL) {
|
while (cpuState != NULL) {
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ public:
|
|||||||
target_addr_t InstructionPointer() const
|
target_addr_t InstructionPointer() const
|
||||||
{ return fInstructionPointer; }
|
{ return fInstructionPointer; }
|
||||||
|
|
||||||
CpuState* GetPreviousCpuState() const
|
CpuState* PreviousCpuState() const
|
||||||
{ return fPreviousCpuState; }
|
{ return fPreviousCpuState; }
|
||||||
void SetPreviousCpuState(CpuState* state);
|
void SetPreviousCpuState(CpuState* state);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user