473,756 Members | 3,482 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Looking for an open source memory pool

hi,

I'm looking for an open source memory pool. It's for use on an
embedded system, if that makes any difference. Something with garbage
collection/defragmentation would be nice. It should have the ability
to allocate different size chunks of memory not just a single size. It
should error check for double free, etc. And it should be usable by a
mixture of C and C++ subsystems.

If I get that, I'm happy. Thank you very much.

As a bonus, I'd like to detect memory leaks, although I'm willing to
code that bit myself to get what I want (I just don't want to reinvent
the wheel of a standard memory pool).

I see two approaches to detecting leaks. Both involve the memory pool
actually allocating more memory than was requested and keeping a
secret header for itself where it stores details of the caller (file/
line number or unique ID, plus timestamp).

After each unit test I would generally expect any allocated memory to
be freed, so comapring memory pool free size at start and end of test
should suffice. If I know that the test will cause my software to
allocate but not free some memory, I can adjust for that (for
instance, Software Under Test allocates a buffer to send a message
which will be freed by recipient, or a timer data block, or similar).

So much for unit test, which ought to be straightforward . Integration
& system verification test are more complex, with lots of background
tasks running. However, in an embedded system it is uncommon for
memory to remain allocated for long. So I can create a low priority
task which runs when the system is otherwise idle and checks
timestamps, looking for memory allocated for "a suspiciously long
time", which can then be investigated to see if someone forgot to free
it. Not perfect, but more than good enough.

Any comments? And any basic, Open Source, memory pool which I can use
as a base?

Thanks in advance...

Jul 25 '08
16 5103
In article <4f************ *************** *******@i76g200 0hsf.googlegrou ps.com>,
James Kanze <ja*********@gm ail.comwrote:
>On Jul 26, 12:14 am, Pete Becker <p...@versatile coding.comwrote :
>On 2008-07-25 17:10:38 -0400, James Kanze <james.ka...@gm ail.comsaid:
On Jul 25, 5:03 pm, Pete Becker <p...@versatile coding.comwrote :
On 2008-07-25 10:02:43 -0400, Juha Nieminen <nos...@thanks. invalidsa=
id:
>>graham.keelli ...@gmail.com wrote:
Something with garbage collection/defragmentation would be nice.
>>Aren't those two things a bit mutually exclusive?
>No. When the application terminates, all reachable memory has
been leaked.
We must have a different definition of memory leaks. When I
terminate an application program, the system recovers all of the
memory, so no memory leaks.
>Nevertheless , the program leaked memory, leaving it for the OS
to clean up.

Again, it depends on your definition of leaked. As a pragmatic
developer, the only definition which interests me is the one
that concerns me: the program hasn't "freed" memory that it
doesn't need anymore. If a garbage collector is present, and
could collect the memory, it isn't "leaked" (since the
application could reuse it). If its a one time operation, for
example constructing a singleton which is never deleted, it
isn't leaked (any more than a static variable is a "leak"). If
the application keeps memory that it doesn't need any more, even
if it does have a pointer to it, and could reach it (e.g. it's
in a map, indexed by a key that has been retired, and won't be
used any more), it's been leaked.

I rather insist on this definition, because people use all sort
of useless definitions, to prove that you can't have a memory
leak in Java (although Sun has had a couple in their bug list),
or some other claim that is only true because the definition is
useless.

(Of course, even this definition leaves some questions open. A
simple compiler will parse all of the source first, then
generate code. Once the source is parsed, no more error
messages will appear. Has it leaked memory because the buffer
of std::cerr hasn't been freed? It's not going to use it any
more.)
You raise some excellent points, and ones that should definitely
be considered. For another $0.02 I usually try to remove the
aspect of the environment from the application to determine
if it _could_ have a leak. That is to say, if I moved this application
to another OS, would it then have a leak. If so, then is it worth
fixing. I rather think this does negate anything being said above,
it may not even address what you're saying, and just another data point,
even if deemed inconsistent. :)
--
Greg Comeau / 4.3.10.1 with C++0xisms now in beta!
Comeau C/C++ ONLINE == http://www.comeaucomputing.com/tryitout
World Class Compilers: Breathtaking C++, Amazing C99, Fabulous C90.
Comeau C/C++ with Dinkumware's Libraries... Have you tried it?
Jul 26 '08 #11
On Jul 26, 3:57*am, James Kanze <james.ka...@gm ail.comwrote:
>
Again, it depends on your definition of leaked. *As a pragmatic
developer, the only definition which interests me is the one
that concerns me: the program hasn't "freed" memory that it
doesn't need anymore. *If a garbage collector is present, and
could collect the memory, it isn't "leaked" (since the
application could reuse it). *If its a one time operation, for
example constructing a singleton which is never deleted, it
isn't leaked (any more than a static variable is a "leak"). *If
the application keeps memory that it doesn't need any more, even
if it does have a pointer to it, and could reach it (e.g. it's
in a map, indexed by a key that has been retired, and won't be
used any more), it's been leaked.

I rather insist on this definition, because people use all sort
of useless definitions, to prove that you can't have a memory
leak in Java (although Sun has had a couple in their bug list),
or some other claim that is only true because the definition is
useless.

(Of course, even this definition leaves some questions open. *A
simple compiler will parse all of the source first, then
generate code. *Once the source is parsed, no more error
messages will appear. *Has it leaked memory because the buffer
of std::cerr hasn't been freed? *It's not going to use it any
more.)
I'm surprised you say that. I've read other posts where you mention
disks filling up and the errors that stem from that. I guess 99.9%
of
the total errors would occur while parsing, but a few could come up
later. But isn't it more interesting to consider a compiler that
doesn't exit after one request? In that case I wouldn't free the
resource because there would be a need for it again on the next
iteration. If you faced tough resource constraints that might be
an area where you could save some at the expense of losing the .1% of
error messages. If you stop getting output you'll probably
eventually figure out to check if the disk is full.

Brian Wood
http://webEbenezer.net
Jul 26 '08 #12
On Jul 26, 11:56 pm, c...@mailvault. com wrote:
On Jul 26, 3:57 am, James Kanze <james.ka...@gm ail.comwrote:
(Of course, even this definition leaves some questions open. A
simple compiler will parse all of the source first, then
generate code. Once the source is parsed, no more error
messages will appear. Has it leaked memory because the buffer
of std::cerr hasn't been freed? It's not going to use it any
more.)
I'm surprised you say that. I've read other posts where you
mention disks filling up and the errors that stem from that.
I guess 99.9% of the total errors would occur while parsing,
but a few could come up later.
Yes. It was meant as a simplistic example, but it is probably
too simple: std::cerr (or the underlying physical file) might be
used in case of assertion failure, or if the compiler detects
some internal error. Shouldn't happen, but defensive
programming will allow for it anyway.

A more realistic example might be if the compiler outputs its
usual messages to std::cout, rather than std::cerr, and reserves
std::cerr for more critical things, such as write errors or
internal errors.

--
James Kanze (GABI Software) email:ja******* **@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientier ter Datenverarbeitu ng
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jul 27 '08 #13
On Jul 26, 5:10*am, James Kanze <james.ka...@gm ail.comwrote:
On Jul 25, 5:03 pm, Pete Becker <p...@versatile coding.comwrote :
On 2008-07-25 10:02:43 -0400, Juha Nieminen <nos...@thanks. invalidsaid:
graham.keelli.. .@gmail.com wrote:
>Something with garbage collection/defragmentation would be nice.
>As a bonus, I'd like to detect memory leaks
* Aren't those two things a bit mutually exclusive?
No. When the application terminates, all reachable memory has
been leaked.

We must have a different definition of memory leaks. *When I
terminate an application program, the system recovers all of the
memory, so no memory leaks. *The problem with memory leaks is
when the program doesn't terminate, but just keeps on using more
and more memory. *(And such leaks are perfectly possible with
garbage collection, just not as likely.)

--
James Kanze (GABI Software) * * * * * * email:james.ka. ..@gmail.com
Conseils en informatique orientée objet/
* * * * * * * * * *Beratung in objektorientier ter Datenverarbeitu ng
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Sigh! I was hoping for a recommendation of a memory pool, not a flame
war^h^h^h^h^h^h ^h^h^h learned discourse :-)

Of course, that won't stop me from jumping in :-)

Since it's an embedded application it is never meant to terminate; it
is supposed to run "forever".

My definition of leak (ymmv) is when a process allocates memory which
no process ever frees.

I hope to test for this at unit test, s/w integration and system
verification test - so, yes, my memory pool should help me test for
leaks (even if I have to add a helper process to scan the pool when
the system is otherwise idle).

When testing has found all(!) memory leaks, then garbage collection is
obviously useful. So, they are not mutually elusive, although they are
likely to be used at different times.

Now, back to the practical... Does anyone know of a decent memory pool
in C/C++ ? The best which I have found so far is Boost++ which I
propose to extend. I just wondered if there is another which is more
suited to my porpoises.

Btw, I am also on the look out for an efficient debug trace system for
embedded software...

Thanks for the replies; I did enjoy the discussion.

Jul 28 '08 #14
On Jul 28, 3:51 am, graham.keelli.. .@gmail.com wrote:
On Jul 26, 5:10 am, James Kanze <james.ka...@gm ail.comwrote:
[...]
Since it's an embedded application it is never meant to
terminate; it is supposed to run "forever".
My definition of leak (ymmv) is when a process allocates
memory which no process ever frees.
Even if it only does it once, on start-up? By this definition,
I've never seen a C++ program which didn't leak.

The buffers used by cin, cout and cerr are never freed. Many
implementations of the STL also leak by this definition. With
older versions of Sun CC (I've not checked recently), array new
leaked.
I hope to test for this at unit test, s/w integration and
system verification test - so, yes, my memory pool should help
me test for leaks (even if I have to add a helper process to
scan the pool when the system is otherwise idle).
I don't use a memory pool for this, but a replacement operator
new/operator delete (which of course supposes that all
allocations are done with new and delete, and not malloc and
free). From experience with using it, with a number of
different implementations of C++ and its libraries, I've found
that 1) you have to wait until after start up to turn it on,
2) you may need to artificially exercise some components before
turning it on (e.g. create a couple of vectors of string, with
strings of various lengths in them), and 3) have some way of
temporarily turning it off.
When testing has found all(!) memory leaks, then garbage
collection is obviously useful. So, they are not mutually
elusive, although they are likely to be used at different
times.
Now, back to the practical... Does anyone know of a decent
memory pool in C/C++ ? The best which I have found so far is
Boost++ which I propose to extend. I just wondered if there is
another which is more suited to my porpoises.
It depends on what level you're looking for. I use the Boehm
collector a lot, both for garbage collection and leak detection.
I use my own debugging operator new/operator delete, not just
for leak detection, but for simulating out of memory situations,
ensuring that dangling pointers don't accidentally work, etc.
(My debugging operators are available at my site:
http://kanze.james.neuf.fr/code-en.html; they're part of the
Test component, but you'll need the Port component as well if
you want to compile them---unlike some other components, the
memory checking component depends very heavily on some of the
code in Port. For the Boehm collector, see
http://www.hpl.hp.com/personal/Hans_Boehm/gc/.)

--
James Kanze (GABI Software) email:ja******* **@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientier ter Datenverarbeitu ng
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34

Jul 28 '08 #15
On Jul 28, 3:46*pm, James Kanze <james.ka...@gm ail.comwrote:
On Jul 28, 3:51 am, graham.keelli.. .@gmail.com wrote:
On Jul 26, 5:10 am, James Kanze <james.ka...@gm ail.comwrote:

* * [...]
Since it's an embedded application it is never meant to
terminate; it is supposed to run "forever".
My definition of leak (ymmv) is when a process allocates
memory which no process ever frees.

Even if it only does it once, on start-up? *By this definition,
I've never seen a C++ program which didn't leak.
Yes, of course, applications dynamically allocate their "Static"
memory at startup, before entering their main loop. And, yes, if you
want to split hairs, that memory will not be freed, so you can call it
a "leak". But we both know that it's not a bug ...
The buffers used by cin, cout and cerr are never freed. *Many
implementations of the STL also leak by this definition. *With
older versions of Sun CC (I've not checked recently), array new
leaked.
I hope to test for this at unit test, s/w integration and
system verification test - so, yes, my memory pool should help
me test for leaks (even if I have to add a helper process to
scan the pool when the system is otherwise idle).

I don't use a memory pool for this, but a replacement operator
new/operator delete (which of course supposes that all
allocations are done with new and delete, and not malloc and
free). *
Unfortunately, I am stuck with a mix of C and C++.
From experience with using it, with a number of
different implementations of C++ and its libraries, I've found
that 1) you have to wait until after start up to turn it on,
Yes, that makes sense from the discussion above.

2) you may need to artificially exercise some components before
turning it on (e.g. create a couple of vectors of string, with
strings of various lengths in them), and 3) have some way of
temporarily turning it off.
When testing has found all(!) memory leaks, then garbage
collection is obviously useful. So, they are not mutually
elusive, although they are likely to be used at different
times.
Now, back to the practical... Does anyone know of a decent
memory pool in C/C++ ? * The best which I have found so far is
Boost++ which I propose to extend. I just wondered if there is
another which is more suited to my porpoises.

It depends on what level you're looking for. *I use the Boehm
collector a lot, both for garbage collection and leak detection.
Looks like http://www.hpl.hp.com/personal/Hans_Boehm/gc/ I will
check it out, thanks.

I use my own debugging operator new/operator delete, not just
for leak detection, but for simulating out of memory situations,
ensuring that dangling pointers don't accidentally work, etc.
(My debugging operators are available at my site:http://kanze.james.neuf.fr/code-en.html;
Thanks. I will check this out.
they're part of the
Test component, but you'll need the Port component as well if
you want to compile them---unlike some other components, the
memory checking component depends very heavily on some of the
code in Port. *For the Boehm collector, see http://www.hpl.hp.com/personal/Hans_Boehm/gc/.)

--
James Kanze (GABI Software) * * * * * * email:james.ka. ..@gmail.com
Conseils en informatique orientée objet/
* * * * * * * * * *Beratung in objektorientier ter Datenverarbeitu ng
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Thanks, James
Jul 29 '08 #16
On Jul 29, 4:01 am, graham.keelli.. .@gmail.com wrote:
On Jul 28, 3:46 pm, James Kanze <james.ka...@gm ail.comwrote:
[...]
I don't use a memory pool for this, but a replacement operator
new/operator delete (which of course supposes that all
allocations are done with new and delete, and not malloc and
free).
Unfortunately, I am stuck with a mix of C and C++.
In practice, you can usually replace malloc/free (although
unlike the case of new/delete, this isn't guaranteed by the
standard). I chose to replace new/delete because I don't have
any C (of my own), it is guaranteed by the standard, and above
all, because it's much easier to do when you can use malloc/free
for the actual allocation and deallocation. The same mechanisms
can easily be applied to malloc/free, but you'll have to
implement your own allocator as well. (With the GNU linker, I
think that there's an option to rename symbols in a library, so
you could rename the standard malloc/free to something else, and
use them. Or just take the sources, and modify them.)

--
James Kanze (GABI Software) email:ja******* **@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientier ter Datenverarbeitu ng
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jul 29 '08 #17

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

Similar topics

8
6860
by: Tron Thomas | last post by:
As part of applying for a programming position at a company, I recently I had submitted some code samples to one of the developers for review. This is the feedback I received: One of his concerns was frequent calls to new and delete, which can cause memory fragmentation over time. An example is the allocation and destruction
22
3481
by: xixi | last post by:
hi, we are using db2 udb v8.1 for windows, i have changed the buffer pool size to accommadate better performance, say size 200000, if i have multiple connection to the same database from application server, will each connection take the memory 800M (200000 x 4k = 800 M), so the memory took will be 800M times number of connections, or the total memory get from bufferpool will be 800M?
5
7012
by: bull | last post by:
hi could any one explain with example the following in a better way to understand 1. what is stack in memory, how the programs are stored in stack , what is the use of stack 2. What is heap in memory, how the programs are stored in heap , what is the use of heap 3. what is pool memory otherwise memory pool, what is the use of memory pool 4. what is difference between stack and heap
10
2107
by: Markus.Elfring | last post by:
Some APIs/SDKs are available to modify settings like "readable", "writeable" or "executeable". Examples: - http://msdn.microsoft.com/library/en-us/memory/base/memory_protection_constants.asp - http://www.opengroup.org/onlinepubs/009695399/functions/mprotect.html - http://en.wikipedia.org/wiki/PaX Would a companion function fit to the "realloc" programming interface to
6
8579
by: B B | last post by:
Okay, here is what's happening: I have a reasonably fast laptop (1.4 GHz Mobile M, so comparable to 2.5GHz P4) doing .net development. Running Windows XP pro, SP2 IIS is installed and running fine All SQL Servers I am referring to share a small (10 computers or so) LAN with a 100MB Switch. No other computers on the LAN exhibit this problem.
4
4379
by: Nevyn Twyll | last post by:
I've been working on an asp.net application and everything's been great. But suddenly, whether I'm tyring to use a database on my own machine, or on my server, I'm getting a timeout when trying to open a database connection. The error seems to happen regardless of what ASP.NET app I'm working with/trying to debug. It will open a few connections, Here's the error:
29
7066
by: Bryce K. Nielsen | last post by:
Suddenly this week, I've started getting this error message: System.Data.SqlClient.SqlConnection(GetOpenConnection)ExecuteNonQuery requires an open and available Connection. The connection's current state is connecting. I'm very puzzled since I'm not calling "ExecuteNonQuery" and I am calling "Open", which I've always assumed was Synchronous, i.e. would not return until either A) the connection was open or B) there was an error. Here...
34
2576
by: jacob navia | last post by:
Suppose that you have a module that always allocates memory without ever releasing it because the guy that wrote it was lazy, as lazy as me. Now, you want to reuse it in a loop. What do you do? Contrary to some people that will start crying to that &@@""#~ programmer that wrote this sh!!!! you keep your cool and you do the following:
6
2565
by: CANCER.0707 | last post by:
The problem statement is as follows Create a library that creates pools of memory of different sizes.For e.g. one pool of 32 byte size, another pool of 64 byte size and so on.Create an array of pointers and store the pointer to each pool in this array.Each pool maintains one link list of free pointers and another link list of allocated pointers.Whenever, the main program requests for a memeory of say, size 32 bytes, a pointer is returned...
0
9287
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10046
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9886
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9722
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6542
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5318
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3817
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3369
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2677
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.