Hello,
I am working on cross platform code that is displaying a huge memory
leak when compiled on 11.00 HPUX using the aCC -AA flag. It is not
leaking on NT, LINUX, Solaris, or HPUX without the -AA flag. In
another news group I came across some interesting (ok scarey)
information regarding memory leaks in the STL list<...> container. I
have compiled and executed the following code and verified that this
does in fact leak on my system.
#include "stdio.h"
#include "stdlib.h"
#include "malloc.h"
#include <list>
using namespace std;
template class list<int>;
int main (int argc, char *argv[])
{
list<int> list_int;
char c='r';
do
{
for ( int j = 0; j < 99999 ; j++ )
{
list_int.push_back(2);
list_int.pop_front();
}
printf ( "\nPress r to repeat, q to exit\n=>" );
c = getchar ();
}
while ( c != 'q' );
return 0;
}
STL is used throughout my code. Has anyone run into this problem? If
so could you please let me know if you have come up with a fix, patch,
or work-around. Any help would be greatly appreciated.
Regards,
Jeremy 3 4619
"Jeremy Lemaire" <jl******@xl.com> wrote in message
news:8a*************************@posting.google.co m...
.... I am working on cross platform code that is displaying a huge memory leak when compiled on 11.00 HPUX using the aCC -AA flag.
Question: what does the -AA flag do, what do you need it for?
.... I have compiled and executed the following code and verified that this does in fact leak on my system.
.... for ( int j = 0; j < 99999 ; j++ ) { list_int.push_back(2); list_int.pop_front(); }
.... STL is used throughout my code. Has anyone run into this problem? If so could you please let me know if you have come up with a fix, patch, or work-around. Any help would be greatly appreciated.
What is the magnitude of the memory leak that you are observing?
The code you have posted should not leak any memory if
the std::list container is decently implemented.
If it does leak memory on your platform, can you step
through the code with a debugger and analyze where the
leak comes from ?
If it is a problem with the implementation of the standard
library that you are using, maybe using an alternative
implementation such as the free STLport ( www.stlport.org)
will help.
Anyway, this is not a problem with standard C++ (as it is
specific to a platform and a given compiler setting).
You may want to request support in a forum dedicated
to the compiler you are using.
Regards,
Ivan
-- http://ivan.vecerina.com
"Ivan Vecerina" <ivecATmyrealboxDOTcom> wrote in message news:<3f******@news.swissonline.ch>... "Jeremy Lemaire" <jl******@xl.com> wrote in message news:8a*************************@posting.google.co m... ... I am working on cross platform code that is displaying a huge memory leak when compiled on 11.00 HPUX using the aCC -AA flag. Question: what does the -AA flag do, what do you need it for?
JL->Thanks for the quick response Ivan. This is from HP:
Description:
The new -AA command line option enables use of the new 2.0 Standard
C++ Library, which includes the new standard conforming
("templatized") iostream library. This is the first release of the 2.0
library. It conforms to the ISO C++ standard.
... I have compiled and executed the following code and verified that this does in fact leak on my system. ... for ( int j = 0; j < 99999 ; j++ ) { list_int.push_back(2); list_int.pop_front(); } ... STL is used throughout my code. Has anyone run into this problem? If so could you please let me know if you have come up with a fix, patch, or work-around. Any help would be greatly appreciated.
What is the magnitude of the memory leak that you are observing?
JL->The software is used in a Call Processing environment and varies
according to call volume. The more messages processed with STL
containers the bigger the leak. In general 7-10 calls per second will
leak 2500 kbytes per hour at a constant rate until the process runs
out of memory and core dumps. The code you have posted should not leak any memory if the std::list container is decently implemented. If it does leak memory on your platform, can you step through the code with a debugger and analyze where the leak comes from ?
JL->Here is the gdb output:
(gdb) where
#0 0x4b68 in std::list<int,std::allocator<int>>::insert
(this=0x7f7f0920,
#aggretxform#77=@0x7f7f0950,
__it={<struct std::iterator<std::bidirectional_iterator_tag,int, long,int
*,int &>> = {<No data fields>}, _C_node = 0x40004cd8},
__x=@0x7f7f0940)
at /opt/aCC/include_std/list:911
#1 0x4404 in main (argc=1, argv=0x7f7f076c) at leakcode.cpp:18
(gdb) display this
2: this = (class std::list<int,std::allocator<int> > *) 0x7f7f0920
But I am not sure how this will help. Should I attempt to modify the
std:list class? If it is a problem with the implementation of the standard library that you are using, maybe using an alternative implementation such as the free STLport (www.stlport.org) will help.
JL->Good idea, the only problem is that I only have until the end of
today to resolve this. I was hoping for a quick fix like a patch or
adding a flag to the build line. I know, wishfull thinking.
Anyway, this is not a problem with standard C++ (as it is specific to a platform and a given compiler setting). You may want to request support in a forum dedicated to the compiler you are using.
JL->I tried one of the compiler forums and they refered me here.
Thanks again for the help. Regards, Ivan
Hi Jeremy, "Ivan Vecerina" <ivecATmyrealboxDOTcom> wrote in message
news:<3f******@news.swissonline.ch>...
.... (thanks for the info) .... The code you have posted should not leak any memory if the std::list container is decently implemented. If it does leak memory on your platform, can you step through the code with a debugger and analyze where the leak comes from ?
.... But I am not sure how this will help. Should I attempt to modify the std:list class?
Well, it is only an option if you are sure that you understand its
implementation very well.
Its code would need to be carefully reviewed and understood...
If it is a problem with the implementation of the standard library that you are using, maybe using an alternative implementation such as the free STLport (www.stlport.org) will help.
JL->Good idea, the only problem is that I only have until the end of today to resolve this. I was hoping for a quick fix like a patch or adding a flag to the build line. I know, wishfull thinking.
A possible workaround, if you are only using the std::list as
a queue, would be to replace this broken container with an
std::deque -- which also has the push_back/pop_front members. Anyway, this is not a problem with standard C++ (as it is specific to a platform and a given compiler setting). You may want to request support in a forum dedicated to the compiler you are using.
JL->I tried one of the compiler forums and they refered me here.
Well, all I can say is that the code sample you posted
should not leak any memory according to the C++ standard.
I would say that the standard library implementation
you use has a bug if this is steadily leaking memory.
[NB: btw, however, the following includes are incorrect
according to the C++ standard:
#include "stdio.h"
#include "stdlib.h"
#include "malloc.h"
This should be:
#include <cstdio>
#include <cstdlib>
// and malloc is defined in cstdlib already
]
Thanks again for the help.
Sorry I can't help further...
Sincerely,
Ivan
-- http://ivan.vecerina.com This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: yaktipper |
last post by:
VS.NET 2002, framework 1.0
I wrote a very simple program to display the RGB value and x,y mouse
position at the cursor on a 50ms timer.
I noticed a memory leak of 8K per timer event. The leak...
|
by: Giovanni Boschi |
last post by:
We have found a memory leak when using a COM library with a C# application.
The leak appears only if the C# application is compiled with the /optimize
flag. It goes away when the C# application is...
|
by: Piotrek |
last post by:
Hi all.
I have a web app, in which I use frames. My main frameset consists of
three inner frames.
When some button is pressed in frame A, then content of frame B is
reloaded. I am using such...
|
by: Peter Michaux |
last post by:
Hi,
Douglas Crockford mentioned in a video on Yahoo! that before removing
an element it is a good idea to purge it's event handlers. I think he
was only refering to the event handlers defined...
|
by: Mike |
last post by:
Hello,
I have following existing code. And there is memory leak. Anyone know
how to get ride of it? function foo has been used in thousands places,
the signature is not allowed to change.
...
|
by: Godzilla |
last post by:
Hello,
I have a program that create and pop an object off a queue, but it is
experiencing some memory leakage. I have been unable to detect where
the memory leakage occur. The strange thing is...
|
by: Sergei Shelukhin |
last post by:
Hi.
I have a <tdelement, with <ain it and <spaninside <a>, all
created statically (e.g. poresent in HTML when the page loads).
Later I execute the code that adds reference to td in question to a...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |