diff options
author | Martin Hunt <hunt@monkey.(none)> | 2008-04-15 21:10:34 -0400 |
---|---|---|
committer | Martin Hunt <hunt@monkey.(none)> | 2008-04-15 21:10:34 -0400 |
commit | 4f7a75f2cb3394290d1093a031546aa848ace929 (patch) | |
tree | 081546c0cd685ed58bc90c4903a7d954415300bf /runtime/runtime.h | |
parent | 8558d3925ee2931b654a19f243bfa8b3be0bfc12 (diff) | |
download | systemtap-steved-4f7a75f2cb3394290d1093a031546aa848ace929.tar.gz systemtap-steved-4f7a75f2cb3394290d1093a031546aa848ace929.tar.xz systemtap-steved-4f7a75f2cb3394290d1093a031546aa848ace929.zip |
2.6.25 fixes and stack level limits.
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r-- | runtime/runtime.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h index 8d267173..50eb9d31 100644 --- a/runtime/runtime.h +++ b/runtime/runtime.h @@ -70,6 +70,10 @@ static struct #define MAXSTRINGLEN 128 #endif +#ifndef MAXTRACE +#define MAXTRACE 20 +#endif + #ifdef CONFIG_FRAME_POINTER /* Just because frame pointers are available does not mean we can trust them. */ #if defined (__i386__) || defined (__arm__) |