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...
Michael Vance
briareos@...
Nov 13, 1999 2:00 am
107
It's the monster stack trace from hell: (gdb) r --sim Starting program: /home/michael/src/HG2/run/hg2 --sim Program received signal SIGSEGV, Segmentation...
Michael Vance
briareos@...
Dec 8, 1999 11:46 pm
108
I'm working on HP-UX 10.20, and when I try to link the dmalloc library into my executable, I get the following linker errors: cc -g...
Jason Botwick
sophie@...
Dec 29, 1999 3:35 pm
110
I'm wondering if it would be more useful to have a separate character for freed and newly alloced memory? Currently you use the same one, but I'd like to be...
Michael Vance
briareos@...
Jan 7, 2000 12:42 am
111
Hi, I am running on an AIX 4.2.1 platform and just installed dmalloc. I ran the test program and it exited with the following error message. Any inkling as to...
jim scully
jscully@...
Jan 11, 2000 9:43 pm
112
... Well, it's very simple. Change BLANK_CHAR to ALLOC_BLANK_CHAR in settings.dist, and add a FREE_BLANK_CHAR, then change the seven places it's used in...
Michael Vance
briareos@...
Jan 12, 2000 9:46 pm
114
... Sorry for the delay. Hmm. This means that some other program is using sbrk() along with dmalloc. Looks like you will need to enable the...
Gray Watson
gwatson@...
Jan 27, 2000 5:23 pm
115
hello, I'm sure you can help me there.... I used dmalloc quite happily in singlethreaded program, but I run in quite a problem in multithreaded one (even just...
Stanislav Kutil
mammal@...
Jan 28, 2000 3:56 pm
116
... It would. I actually tend to prefer a longword pattern to a character, but that's just me. While it's not a big issue anymore, I also have a preference...
Randell Jesup
rjesup@...
Jan 31, 2000 9:28 pm
117
... I did write a patch for this, and it was a context diff of about 10 lines :). Unfortunately I lost it whilst shuffling about dmalloc versions. The current...
Michael Vance
briareos@...
Jan 31, 2000 9:46 pm
118
We have found your programs on the web, and after downloading it, the winzip could not work with the file. Because there is an error in the header. Then one...
Yuen Cheng
yuencheng@...
Feb 3, 2000 7:20 pm
119
To whom it may be useful. I noticed that when using C++ style allocation (new, new[]) file and line information is not being tracked. This is a little...
Stanislav Kutil
mammal@...
Feb 7, 2000 2:38 pm
120
I forgot, the definitions in dmalloc.h should look like this: #ifndef DMALLOC_NOOPS #define NEW new(__FILE__,__LINE__) extern void * operator new (size_t...