Hi,
Quick question on Valgrind suppression.
I'd like to suppress any uninitialized read involving function 'foo()'.
Right now I have to do the following to take care of different levels of
call stacks. Is there a way to collaps them to a single entry?
Currently using version 2.0.0.
Thanks,
Julie
{
suppress_foo
Memcheck:Value4
fun:*
fun:foo
}
{
suppress_foo
Memcheck:Value4
fun:*
fun:*
fun:foo
}
{
suppress_foo
Memcheck:Value4
fun:*
fun:*
fun:*
fun:foo
}
|
|
From: Nicholas N. <nj...@ca...> - 2004-05-19 08:13:49
|
On Tue, 18 May 2004, Julie Wu wrote:
>
> I'd like to suppress any uninitialized read involving function 'foo()'.
> Right now I have to do the following to take care of different levels of
> call stacks. Is there a way to collaps them to a single entry?
>
> {
> suppress_foo
> Memcheck:Value4
> fun:*
> fun:foo
> }
> {
> suppress_foo
> Memcheck:Value4
> fun:*
> fun:*
> fun:foo
> }
> {
> suppress_foo
> Memcheck:Value4
> fun:*
> fun:*
> fun:*
> fun:foo
> }
That's looks like the best way to do it.
N
|