diff options
author | hunt <hunt> | 2008-01-15 16:57:20 +0000 |
---|---|---|
committer | hunt <hunt> | 2008-01-15 16:57:20 +0000 |
commit | 68c2e2a316c7a22d058041dcba205b1e3309477d (patch) | |
tree | 39fca2263ea173fee015777ba8ed96f124e642dd /runtime/stack-i386.c | |
parent | d94d159d9524a9b705c2704ca15b5014a24c923e (diff) | |
download | systemtap-steved-68c2e2a316c7a22d058041dcba205b1e3309477d.tar.gz systemtap-steved-68c2e2a316c7a22d058041dcba205b1e3309477d.tar.xz systemtap-steved-68c2e2a316c7a22d058041dcba205b1e3309477d.zip |
Add support for memory allocation tracking.
Diffstat (limited to 'runtime/stack-i386.c')
-rw-r--r-- | runtime/stack-i386.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/stack-i386.c b/runtime/stack-i386.c index a80de048..3675fc97 100644 --- a/runtime/stack-i386.c +++ b/runtime/stack-i386.c @@ -1,6 +1,6 @@ /* -*- linux-c -*- * i386 stack tracing functions - * Copyright (C) 2005, 2006, 2007 Red Hat Inc. + * Copyright (C) 2005-2008 Red Hat Inc. * * This file is part of systemtap, and is free software. You can * redistribute it and/or modify it under the terms of the GNU General @@ -37,7 +37,7 @@ static void __stp_stack_print (struct pt_regs *regs, int verbose, int levels) #else while (_stp_valid_stack_ptr(context, (unsigned long)stack)) { addr = *stack++; - _stp_func_print(addr, verbose); + _stp_func_print(addr, verbose, 1); } #endif } |