Search the web
Sign In
New User? Sign Up
dmalloc · Debug Malloc Library (dmalloc) Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 150 - 184 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
150
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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...
mcvey@...
Send Email
May 15, 2000
9:56 pm
159
dmalloc 4.5.2 on AIX DMALLOC_OPTIONS="debug=0x1df67deb,inter=100,log=logfile" program: #include <stdio.h> #include <dmalloc.h> main() { char * ptr1; char *...
mcvey@...
Send Email
May 16, 2000
2:26 am
160
... 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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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); ...
Neil McGill
nmcgill@...
Send Email
May 23, 2000
8:50 am
173
... +++ dmalloc-4.6.0/Makefile.in Tue May 23 15:14:04 2000 @@ -69,7 +69,7 @@ OBJS = arg_check.o compat.o dmalloc_lp.o dmalloc_tab.o env.o heap.o protect.o ...
James Hawtin
oolon@...
Send Email
May 30, 2000
11:11 am
174
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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...
ilppi@...
Send Email
Jul 24, 2000
3:36 pm
Messages 150 - 184 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help