summaryrefslogtreecommitdiffstats
path: root/runtime/unwind.c
diff options
context:
space:
mode:
authorDavid Smith <dsmith@redhat.com>2009-04-17 09:27:56 -0500
committerDavid Smith <dsmith@redhat.com>2009-04-17 09:27:56 -0500
commit889c4638f741163395438aca60226ff8a5e2009e (patch)
treec2960f72c34bb12db5b5878c206ca6cae6985c61 /runtime/unwind.c
parentee0dfa16f900396f4fd89d4d765e877daa8a2c19 (diff)
parent2a22df62a80d032e9450570c32009bfea4be7305 (diff)
downloadsystemtap-steved-889c4638f741163395438aca60226ff8a5e2009e.tar.gz
systemtap-steved-889c4638f741163395438aca60226ff8a5e2009e.tar.xz
systemtap-steved-889c4638f741163395438aca60226ff8a5e2009e.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'runtime/unwind.c')
-rw-r--r--runtime/unwind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/unwind.c b/runtime/unwind.c
index f7b19def..41af72a7 100644
--- a/runtime/unwind.c
+++ b/runtime/unwind.c
@@ -345,7 +345,7 @@ static int processCFI(const u8 *start, const u8 *end, unsigned long targetLoc, s
state->label = NULL;
return 1;
}
- if (state->stackDepth >= MAX_STACK_DEPTH)
+ if (state->stackDepth >= STP_MAX_STACK_DEPTH)
return 0;
state->stack[state->stackDepth++] = ptr.p8;
break;