 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Thu Sep 14, 2006 9:10 am Post subject: Source of memory leak |
|
|
I use c++ for writing plugins which run on Linux based application. The
application is a third party software and source code is not available.
Plugins are called by the application repeatedly during runtime. At the
beginning, I thought my plugins caused the memory leak. However, I
tested with a dummy plugin which does nothing. No variable is created
in the main program except some DEFINE constants in the header file.
Those constants are essential for the application and cannot be
removed. It turns out that memory leak persists.
I just wonder if the application causes memory leak. I was told by tech
support of the application that resources management should be done by
user himself. Any idea if the problem can be fix?
Thanks
Ben |
|
| Back to top |
|
 |
Wehrdamned Guest
|
Posted: Thu Sep 14, 2006 9:10 am Post subject: Re: Source of memory leak |
|
|
benyeung99 (AT) yahoo (DOT) com wrote:
| Quote: | I use c++ for writing plugins which run on Linux based application. The
application is a third party software and source code is not available.
Plugins are called by the application repeatedly during runtime. At the
beginning, I thought my plugins caused the memory leak. However, I
tested with a dummy plugin which does nothing. No variable is created
in the main program except some DEFINE constants in the header file.
Those constants are essential for the application and cannot be
removed. It turns out that memory leak persists.
I just wonder if the application causes memory leak. I was told by tech
support of the application that resources management should be done by
user himself. Any idea if the problem can be fix?
|
You need first to determine where is the actual problem and a tool like
Valgrind can help
you. Alternatively, you could use some memory debugging library like
dmalloc, but with
valgrind is easiest.
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|