From 68c2e2a316c7a22d058041dcba205b1e3309477d Mon Sep 17 00:00:00 2001 From: hunt Date: Tue, 15 Jan 2008 16:57:20 +0000 Subject: Add support for memory allocation tracking. --- runtime/stack-i386.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/stack-i386.c') 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 } -- cgit