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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 158 - 190 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
185
Try #include <dmalloc.h> main() { char *t; t = (char *) malloc(1000); } As your test program you return one allown did not use any Xalloc functions so probably...
James Hawtin
oolon@...
Send Email
Jul 24, 2000
4:19 pm
186
Hey: Released 4.7.0 yesterday but fixed a bug today so hence the 4.7.1. Available on the releases page: http://dmalloc.com/releases/ Specific ChangeLog entries...
gray.egroups@...
Send Email
Jul 25, 2000
4:35 pm
187
In msg #173, James wrote how to apply a patch to dmalloc v4.6.0 I downloaded v4.7.1 (current) and not sure how to make this work. Could anyone here helps as to...
gazit@...
Send Email
Aug 2, 2000
12:34 am
188
I will do a rework of this patch against 4.7.1 as some people seem to like it. Hopefully I will mail it out today. James...
James Hawtin
oolon@...
Send Email
Aug 2, 2000
9:53 am
189
Here is a rework of my cxx diff for version 4.7.1 Its attached and called cxx_dmalloc-4.7.1.diff The only real change is I "improved" the constness of things...
James Hawtin
oolon@...
Send Email
Aug 2, 2000
10:56 am
190
Any chance this or similar will make it into dmalloc offical? There must be dozens of c++ patches to dmalloc kicking around - I have my own hackings too. Would...
Neil McGill
nmcgill@...
Send Email
Aug 2, 2000
11:03 am
Messages 158 - 190 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