Advertisement

1 - 6 of 6 containing alltags:("valgrind") (0 seconds)
Hi, Can anyone show me how to use Valgrind to debug Qt's application memory leak. Can you show me in details on one of these example (http://doc.trolltech.com/3.2/examples.html) how to compil...
Zones: Linux DevDate Answered: 03/10/2004 Grade: B Views: 48
I wrote a little program and ran it trough "Valgrind Memory Leak Check".  It detected a memory leak. So I made an output of every allocation and deallocation. In the end they matched and I narrowed...
Zones: C++Date Answered: 08/30/2005 Grade: A Views: 0
Valgrind reports invalid read errors on the gethostbyname() function call in the C socket library.  The program works fine, but I'm wondering if this is just a problem with valgrind, or if I'm doin...
Zones: CDate Answered: 03/20/2007 Grade: A Views: 0
I'm working on creating a K-Nearest Neighbor classifier and having some problems that I can't figure out. I have a header file KNNClassifier.h and its class file KNNClassifier.cc In KNNClassifie...
Zones: C++, Linux DevDate Answered: 05/31/2007 Grade: B Views: 0
Valgrind, which I use to identify memory leaks, compains when I use the following sequence: main()  { vector<string> A; A.pushback("A string"); return 0; } It seems to me that this ...
Zones: C++, Microsoft Visual C++Date Answered: 06/16/2004 Grade: A Views: 0
Hi, I'm trying to use valgrind to debug my application which uses unixodbc under linux. I ran valgrind like:      > valgrind --tool=memcheck --leak-check=yes  myapp and I get the following...
Zones: C++Date Answered: 12/19/2007 Grade: A Views: 0
  • 1