I'd like to set up some mirror sites for the dmalloc code since once and a while my DSL connection goes into the toilet. Any volunteers? The only thing I ask...
gray.egroups@...
Apr 3, 2000 4:23 pm
151
... Do you mean, mirror of the ftp site or something else? I've maintained a mirror of it at {http,ftp}://ftp.unicamp.br/pub/dmalloc for a few years. -- ...
Alexandre Oliva
oliva@...
Apr 3, 2000 6:04 pm
152
gray> I'd like to set up some mirror sites for the dmalloc code since gray> once and a while my DSL connection goes into the toilet. How about just migrating...
Skip Montanaro
skip@...
Apr 3, 2000 8:27 pm
154
Hi, Has any body faced problem inusing dmalloc insco 5.0.5? My isues are . 1. I am not able to build thread version of the dmalloc library. I was using the...
Aaraj P Thyagaraj
aaraj@...
Apr 14, 2000 3:13 pm
155
Just released dmalloc version 4.5.2 with a small bug fix to the chunk pointer checking. Thanks Ezra. I also changed some of the memory routine prototypes to...
Gray Watson
gray.egroups@...
Apr 18, 2000 8:45 pm
157
I download the latest version of Debug Malloc Library from the website and follow the instruction in the document, and make the library and compile my...
hlam@...
Apr 28, 2000 6:44 pm
158
I am getting an error 91 when I start up my application, and the code throwing the exception is in chunk.c: 935 if (free_p == NULL) { 936 if (free_c...
... Good one. Bug. Looks like the 1st allocation in a dblock will not be reported as unfreed. The following seems to remedy this bug: ... *************** ...
gwatson@...
May 16, 2000 3:27 pm
161
Just released dmalloc library version 4.6.0 to the dmalloc releases page, sourceforge, and egroups pages: http://dmalloc.com/releases/ This version was...
Gray Watson
gray.egroups@...
May 17, 2000 9:32 pm
162
I finally decided I should upgrade my dmalloc 3.3.1 release to 4.6! I notice that it still has problems using dmalloc with C++ Namely firstly, it does not tell...
James Hawtin
oolon@...
May 19, 2000 4:55 pm
163
When debugging a program that forks both the child and the parent write to the same dmalloc log file, is complete pain. This patch addess this problem so what....
James Hawtin
oolon@...
May 19, 2000 5:12 pm
165
... This will only work if a program doesn't use placement new and doesn't define `operator new' anywhere. ... No, this is just plain wrong. There's no such...
Alexandre Oliva
oliva@...
May 20, 2000 4:45 am
166
... true but dmalloc already defines at operator new in the dmallocc.cc library so its just extending that. Sadly in C++ there is no perfect way to do it. But...
James Hawtin
oolon@...
May 20, 2000 8:58 am
167
... Nope. With this define, you'll be *breaking* any code that uses the word `new' in a context other than `new foo'. Try to compile the file below and...
Alexandre Oliva
oliva@...
May 20, 2000 9:08 am
169
Yes your right it would be much better to have the macro define NEW. James...
James Hawtin
oolon@...
May 22, 2000 3:19 pm
170
Better yet, use D_NEW, so as to reduce potential global namespace collision possibilities... </nitpicking>. ... -- ...
Eric Mitchell
emitchell@...
May 22, 2000 3:30 pm
171
... yes ok!! Shall I do a rewrote of the patch then? removing the delete stuff and defineing D_NEW, hopefully that then will be included, in future releases. ...
James Hawtin
oolon@...
May 22, 2000 3:44 pm
172
Guys, I use this, does it help anyone: #ifdef DMALLOC #define NEW new(__FILE__,__LINE__) void * operator new (size_t, const char * file, unsigned int line); ...
Hi, I have have been a happy user of dmalloc for the last several years. I just installed a new system with Mandrake 7.0, and installed dmalloc 4.6.0, but...
Niels Baggesen
nba@...
Jun 26, 2000 6:31 am
175
Niels> I just installed a new system with Mandrake 7.0, and installed Niels> dmalloc 4.6.0, but "make light" died with a SIGSEGV in dmalloc_t. ... Niels> $ gcc...
Skip Montanaro
skip@...
Jun 26, 2000 2:15 pm
176
Hi , I have installed dmalloc-4.6.0 on AIX 4.3. I could not able to compile "make light" "make heavy" the following compilation error for make light. ...
Shrikanth Gangoor
gangoor@...
Jun 27, 2000 5:41 pm
177
Hi , I am using dmalloc 4.6 Please Can any one explain in breaf.. how can i use dmalloc for external source (C-programs)... Without including dmalloc.h into...
Shrikanth Gangoor
gangoor@...
Jun 27, 2000 8:14 pm
178
Hi , I have installed dmalloc-4.6.0 on AIX 4.3. I am compiling test.c code... I have included dmalloc.h in test.c .. But I am facing following problems!! I ...
Shrikanth Gangoor
gangoor@...
Jun 28, 2000 3:26 am
179
... You must add -ldmalloc to your cc command ... The library will work without recompiling, just link with it. But you will not get symbolic references with...
Niels Baggesen
nba@...
Jun 28, 2000 8:10 am
180
Hi, Thease are dmalloc setting ***************************** For a list of the command-line options enter: dmalloc --usage Debug-Flags 0x14e40583 (350487939)...
Shrikanth Gangoor
gangoor@...
Jun 29, 2000 5:44 am
181
I am having trouble building dmalloc on a HP. gcc -v: Reading specs from /home/urban/local/hp/lib/gcc-lib/hppa1.1-hp-hpux10.20/2.96/specs gcc version 2.96...
'David Scott Urban
urban@...
Jun 30, 2000 4:33 pm
183
Hi I'm having problems installing dmalloc libraries on my SGI 02 machine running IRIX 6.5. The configure script runs fine, but I get the following errors when...
Satheesh
gsatheesh@...
Jul 21, 2000 8:34 pm
184
Hi, There must be something wrong either with me or the heap-check. Or, is ihis normal behavior? This is the program I'm testing (gcc 2.95.2, Red Hat 6.1): int...