diff options
Diffstat (limited to 'src/processor/stackwalker_x86.h')
-rw-r--r-- | src/processor/stackwalker_x86.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/processor/stackwalker_x86.h b/src/processor/stackwalker_x86.h index 74d893a2..6bb819de 100644 --- a/src/processor/stackwalker_x86.h +++ b/src/processor/stackwalker_x86.h @@ -49,8 +49,8 @@ class StackwalkerX86 : public Stackwalker { private: // Implementation of Stackwalker, using x86 context (%ebp, %eip) and // stack conventions (saved %ebp at [%ebp], saved %eip at 4[%ebp]). - bool GetContextFrame(StackFrame* frame); - bool GetCallerFrame(StackFrame* frame); + virtual bool GetContextFrame(StackFrame* frame); + virtual bool GetCallerFrame(StackFrame* frame); // Stores the CPU context corresponding to the innermost stack frame to // be returned by GetContextFrame. |