On 07/28/2011 01:17 AM, Ranjan Maitra wrote:
> I have been trying to use valgrind with Fedora 15 and I find that I am
> not getting the complete backtrace information. Let me provide a simple
> example:
Valgrind works fine for me:
==6073== Conditional jump or move depends on uninitialised value(s
Here is a excelent compilation of the most used commands with Valgrind
http://techtalkies.blogspot.com/2011/06/valgrind-cheat-sheet-notes.html
Regards
2011/7/27 Marcos Luis Ortiz Valmaseda
> Are you using the same valgrind version on both systems?
> Use this line to obtain a more detailed outpu
Are you using the same valgrind version on both systems?
Use this line to obtain a more detailed output:
valgrind --leak-check=yes myprog arg1 arg2
2011/7/27 Ranjan Maitra
> Hi,
>
> I have been trying to use valgrind with Fedora 15 and I find that I am
> not getting the complete backtrace inf
Hi,
I have been trying to use valgrind with Fedora 15 and I find that I am
not getting the complete backtrace information. Let me provide a simple
example:
/* file test.c */
#include
int main(void) {
int i;
fprintf(stderr, "i = %d\n", i);
} /* main */
Compile with:
gcc -o