Hi, I originally posted this to crossgcc . ... eGroups.com home: http://www.egroups.com/group/dmalloc http://www.egroups.com - Simplifying group communications...
Langerholc, Larry
Larry.Langerholc@...
Jun 16, 1999 8:06 pm
76
Last message was mangled - retransmitting ... eGroups.com home: http://www.egroups.com/group/dmalloc http://www.egroups.com - Simplifying group communications...
Langerholc, Larry
Larry.Langerholc@...
Jun 16, 1999 8:11 pm
77
Does this mean I over ran somewhere and stomped on dmalloc's record keeping? It only happens in the debug version of my application. Any suggestions on how to ...
manelson@...
Jun 28, 1999 4:52 pm
79
Hi, I've just started using dmalloc, and I have a question: I would like to define "checkpoints" in my code and measure memory leaks within two checkpoints. ...
kintel@...
Jul 16, 1999 4:50 pm
80
Hi, I hope this is not a FAQ :-) I would like to blacklist a list of 'ra=0x4013195c'. I would be *very* usefull to shut-up numerous leaks from standard C...
loic@...
Jul 19, 1999 3:31 pm
81
... Currently there is no way to do this. Good idea however that I will add into the TODO list. -- gray@... ... eGroups.com home:...
Gray Watson
gray@...
Jul 19, 1999 6:02 pm
82
... Just so you know, _sometimes_ those leaks from the standard C library are misuses of the library... As an example, here on Solaris 5.6, if you run this...
Binesh Bannerjee
binesh@...
Jul 19, 1999 7:24 pm
84
Hi! Because I'm not involved with "dmalloc" in the near future, please remove me from your e-mail list. Thank you! I'm sorry if I'm creating a mass-mail here,...
Kishore Keswani
kishore@...
Jul 19, 1999 9:56 pm
85
... There are two issues here. THe first is that the linker will not cause the malloc objects from dmalloc to be loaded unless they are undefined in your test...
Gray Watson
gray@...
Jul 19, 1999 11:03 pm
86
Bug(?) in dmalloc 4.2.0: When I try to check the structures using interval ("-i 100" say), or by adding _chunk_check to the cleanup code, I get instances of...
Randell Jesup
rjesup@...
Jul 20, 1999 6:54 pm
87
Does dmalloc test for memcpy() with overlapping memory areas, where memmove() should be used instead? I think this would be a very handy test to have,...
Paul D. Smith
pausmith@...
Jul 21, 1999 6:53 am
88
... Alright, that's fair... I guess I've never hit on it till now, because, I've never written a program that didn't directly call malloc... (Well, I have, but...
Binesh Bannerjee
binesh@...
Jul 22, 1999 8:19 pm
89
A suggestion for dmalloc - If check-blank is set (and probably even if it isn't), _chunk_check() should be called during cleanup, or better yet in...
Randell Jesup
rjesup@...
Aug 2, 1999 10:37 pm
90
I've thought about suggesting this on and off for several months. It would be nice to have an option to ask DMALLOC to initialize each allocated chunk of...
Thomas Epperly
Thomas.Epperly@...
Aug 16, 1999 6:28 pm
91
Hi, I don't think if this is already possible (have checked all docs out but could not find it) otherwise this is a suggestion to new functionalities ;) First...
Martijn Schoemaker
mschoe@...
Aug 17, 1999 1:02 pm
92
dbake-@... wrote: original article:http://www.egroups.com/group/dmalloc/?start=77 ... keeping? It ... on how to ... Michael, Did you ever...
dbaker@...
Aug 26, 1999 8:57 pm
93
Dennis - My app was stomping on dmalloc's record keeping. If I remember right, I found the bad chunk of memory, got the pointer for the previous chunk, and...
manelson@...
Aug 27, 1999 10:01 pm
94
... strdup() is a macro under newer Linux (with egcs). Bleah. So the following patch comments out the prototype in dmalloc.h.3. I'll [yet another] line to...
gray.egroup@...
Aug 30, 1999 10:36 pm
95
Hi, I'm trying to debug a problem that dmalloc is reporting, but I'm struggling right now. I'm not familiar with the dmalloc internals, so that may be why....
dbaker@...
Aug 30, 1999 11:34 pm
96
Hi all, Just grabbed the latest version of dmalloc -- looks like a really great package. I installed it and threw together a really simple test: @@@ snip @@@ ...
Steve Bernacki Jr.
steve@...
Sep 28, 1999 8:05 pm
97
Howdy: I've released dmalloc library version 4.3.0 beta 1. I've fixed the strdup problem for Linux compiles and the problems the library had tracking the...
gray.egroups@...
Oct 12, 1999 12:17 am
98
Hi, I'm running dmalloc on Linux 2.0.35 (redhat 5.??). I like everything about dmalloc, except that I find it difficult to draw definitive conclusions about my...
Russell Balest
rjbalest@...
Oct 12, 1999 2:16 pm
99
Found some problems with the new USE_DMALLOC_LEAP define. I.e. it was always off. Fixed. See the following web site for new versions: ...
Just on a note of almost silly optimizations with strange results ... I did a comparison of the make light tests (best results from 5 timings each) with two...
mikebabcock@...
Oct 18, 1999 4:57 am
102
If I link against both dmalloc and glib, are the gmalloc and gstrdup functions going through dmalloc or do I have to recompile a version of glib against...
mikebabcock@...
Oct 18, 1999 4:58 am
103
Does dmalloc work with C++. On the DEC I can get it to recognize that a memory leak exists but it does not tell me where. On AIX (Where I really need the tool)...
douglas.campbell@...
Oct 18, 1999 5:25 pm
104
I've got the dmalloc online docs and I'm trying to understand how to find a memory leak. Here is my situation. I'm using a library called Swarm and I've...
Paul Johnson
pauljohn@...
Oct 19, 1999 7:39 pm
105
Any reason the dmalloc_memcpy prototype uses char* instead of void*? m. -- Programmer "I wrote a song about dental floss, Loki...
Michael Vance
briareos@...
Nov 2, 1999 11:58 pm
106
I had been suffering with some very nasty problems in my large C++ app, and our lead coder recently uncovered what they are. They manifested most obviously...