|
From: James R. <jr...@ca...> - 2006-07-11 17:36:09
|
I was perusing the documentation for Valgrind as I get acquanted with it. =20 In the section on suppressions, I noticed that the error is identified using the following string: =20 "Memcheck:Value4" =20 But, in the log that the tool generates, it prints something like: =20 "Use of uninitialised value of size 4" =20 How does one figure out that to suppress this error, you use Memcheck:Value4. Ie. where can I find the mapping between this identifier and the error message? =20 James A. Renton Beverly, MA =20 |
|
From: Dennis L. <pla...@pr...> - 2006-07-12 09:27:43
|
Am Dienstag, den 11.07.2006, 13:38 -0400 schrieb James Renton: > I was perusing the documentation for Valgrind as I get acquanted with > it. >=20 > =20 >=20 > In the section on suppressions, I noticed that the error is identified > using the following string: >=20 > =20 >=20 > =E2=80=9CMemcheck:Value4=E2=80=9D >=20 > =20 >=20 > But, in the log that the tool generates, it prints something like: >=20 > =20 >=20 > =E2=80=9CUse of uninitialised value of size 4=E2=80=9D >=20 > =20 >=20 > How does one figure out that to suppress this error, you use > Memcheck:Value4. Ie. where can I find the mapping between this > identifier and the error message? >=20 The --gen-suppressions parameter to valgrind is there to help generating suppressions. >=20 |