473,387 Members | 1,486 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

STL Memory Leak when compiling on11.00 HPUX using the aCC -AA flag

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
Jul 19 '05 #1
3 4642
"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
Jul 19 '05 #2
"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

Jul 19 '05 #3
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
Jul 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
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...
3
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...
14
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...
6
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...
17
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. ...
3
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...
4
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.