Tagged Questions
The tcmalloc tag has no wiki summary.
10
votes
5answers
2k views
Will malloc implementations return free-ed memory back to the system?
I have a long-living application with frequent memory allocation-deallocation. Will any malloc implementation return freed memory back to the system?
What is, in this respect, the behavior of:
...
4
votes
1answer
339 views
using tcmalloc with glib
I want to test the performance improvement that I could get by using Google's tcmalloc. My program is built using quite a lot of the utilities provided by glib (hashes, lists, arrays, ...). So what I ...
3
votes
5answers
386 views
C++ memory allocation mechanism performance comparison (tcmalloc vs. jemalloc)
I have an application which allocates lots of memory and I am considering using a better memory allocation mechanism than malloc.
My main options are: jemalloc and tcmalloc. Is there any benefits in ...
3
votes
1answer
874 views
tcmalloc: how can I get my malloc calls overridden when compiling statically?
When I use LD_PRELOAD=/usr/local/lib/libtcmalloc.so, all my calls to malloc become tcmalloc calls. However, when I link statically against libtcmalloc, I find that straight malloc is getting called ...
2
votes
3answers
375 views
Compiling Python 2.6.6 and need for external packages wxPython, setuptools, etc… in Ubuntu
I compiled Python 2.6.6 with google-perf tools (tcmalloc) library to eliminate some of the memory issues I was having with the default 2.6.5. After getting 2.6.6 going it seems to not work becuase I ...
2
votes
1answer
208 views
What does “TCMalloc currently does not return any memory to the system. ” mean?
At the http://goog-perftools.sourceforge.net/doc/tcmalloc.html
it is stated: "CMalloc currently does not return any memory to the system."
I presume that it means that if I allocate 42 mb and free it ...
1
vote
1answer
21 views
How to trace “tcmalloc : large alloc … ”
my app print several line like:
tcmalloc: large alloc 4294488064 bytes == 0x2b968d8000 @ 0x727432 0x727302 0x727a58 0x75a07d 0x574beb 0x585756 0x5575df 0x5717db 0x57108f 0x58078c 0x302b80610a
...
1
vote
1answer
57 views
Why should I need libprofiler.so.0
I am using google prof tools, and link my app with -lprofiler, but when I run this program:
error while loading shared libraries: libprofiler.so.0: cannot open shared object file: No such file or ...
1
vote
2answers
687 views
TCMalloc Allocator for STL
I want to use TCMalloc with STL containers, so I need an allocator built with TCMalloc (like tbb_allocator with TBB malloc). I cannot find any anything TCMalloc documentation (if it is called a ...
1
vote
3answers
966 views
Windows tcmalloc replacement with static linking
A C++ project encounter the memory fragmentation problem, and tried following:
nedmalloc-
Did not pass the stress test (crashed after 15 hrs), that means it works in the most of cases but not the ...
1
vote
1answer
161 views
Memory not released by python cherrypy application on linux
I have a long running process that will fetch 100k rows from the db genrate a web page and then release all the small objets (list, tuples and dicts). On windows, after each request the memory is ...
1
vote
2answers
559 views
Globally use Google's malloc?
I'd like to experiment with Google's tcmalloc on Linux... I have a huge project here, with hundreds of qmake generated Makefile's... I'd like to find a way to get gcc to globally link against tcmalloc ...
0
votes
1answer
63 views
function wrapping in c - sbrk for tcmalloc
I am trying to port tcmalloc to uclibc. Tcmalloc has a definition for sbrk function, which in turn calls the __sbrk from libc. Uclibc on the other hand does not have __sbrk function, but has sbrk.
...
0
votes
2answers
70 views
Linking with libtcmalloc ubuntu
I had installed the package libtcmalloc-minimal0
but when I try to compile my program with flag
-ltcmalloc-minimal0
I am getting error
/usr/bin/ld: cannot find -ltcmalloc_minimal0
I had checked ...
0
votes
0answers
15 views
how can I use multiple tcmalloc in one process?
Is there any method that can init multiple tcmalloc in one application?
I mean,with this method, I can initialize multiple inter-independent tcmalloc in one process.
Does anybody know how to achieve ...
0
votes
1answer
50 views
Is it possible to use google tcmalloc to get per thread memory usage
Like the title says I'm interested if I can see per thread memory usage on programs compiled with -ltcmalloc. AFAIK with regular malloc memory is linked to process not to thread, but I'm not sure ...
0
votes
0answers
29 views
How tcamalloc gets linked to the main program
I want to know how malloc gets linked to the main program.Basically I have a program which uses several static and dynamic libraries.I am including all these in my makefile using option "-llibName1 ...
0
votes
0answers
138 views
how hoard,nedmalloc get linked to our programs
I am trying to understand how "hoard","nedmalloc" get linked to the windows projects.What I understand is that if we compile our program as _MD option then it gets linked to msvcrt*.dll.
All of our ...
-2
votes
1answer
129 views
Memory never released when using Python classes and numpy
Basically I am not going to post all of the code here but I will provide a generic example. I have a class that has a function to run and create a large array of values. This array shouldn't be much ...