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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 183 - 215 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
191
The reason for the D_NEW and not NEW (which I had used previously) was people pointed out it was quite likely to be picked by other developers as a function or...
James Hawtin
oolon@...
Send Email
Aug 2, 2000
11:13 am
192
... Recursive macro definition. Smell bad. No No No! Another reason for D_NEW over new is that code that is already compiled and linked (i.e. template...
Eric Mitchell
emitchell@...
Send Email
Aug 2, 2000
3:02 pm
193
Hi: I've got a threaded C++ app (actually, several) spread across many source directories. (And it leaks badly.) I read in the documentation you can use either...
Stuart Dole
srd@...
Send Email
Aug 4, 2000
12:32 am
194
Hi again: Seems to be a pretty quiet group! I still have not been able to create a log file. After much mucking around, I have linked my C++ multi-threaded app...
Stuart R Dole
srd@...
Send Email
Aug 4, 2000
10:42 pm
195
Because delete(0) and delete[](0) are allowed in the ISO C++ standard, we should probably modify the definition of operator delete and delete[] to somehow cope...
Eric Bourque
ericb@...
Send Email
Sep 4, 2000
11:29 pm
196
Hi, I've just grabbed a copy of dmalloc and started trying to make it work on an unsupported computer system. This is a rather non- standard computer and I've...
Ian Badcoe
ianb_ow@...
Send Email
Sep 11, 2000
10:56 am
197
Dear Garry watson / all Same pice of code is working fine with AIX OS . But I found that there is memory leak one my modules by calling : eg: After keep on...
Shrikanth Gangoor
gangoor@...
Send Email
Sep 13, 2000
6:20 am
198
... It is. ... This is bad. Bug. You should enable FREED_POINTER_DELAY in settings.h or apply the following patch. ... *************** *** 1238,1244 **** } ...
Gray Watson
gray.egroups@...
Send Email
Sep 13, 2000
7:14 pm
199
... From the Troubleshooting Common Problems section of the manual: `I don't see any information about my non-freed (leaked) memory?' The library will not (by...
Gray Watson
gray.egroups@...
Send Email
Sep 13, 2000
7:16 pm
201
Hi, Installed version dmalloc-4.7.1-1 on Linux system using rpm, and followed the instructions, including the shell command: "dmalloc -l mydmalloc.log -i 10...
jonathan@...
Send Email
Oct 4, 2000
3:12 pm
202
Your interations are too low ... try this #ifdef DMALLOC extern unsigned long _dmalloc_check_interval; #endif main() { #ifdef DMALLOC ...
James Hawtin
oolon@...
Send Email
Oct 4, 2000
4:08 pm
203
... Unfortunately, dmalloc_debug does not initialize the library. The 1st allocation will do that. This is counter-intuitive and will be fixed in the next...
Gray Watson
gray.egroups@...
Send Email
Oct 4, 2000
7:01 pm
205
... I got round that one by mallocing 1 byte and freeing it at the beginning of the program to initalise dmalloc. James...
James Hawtin
oolon@...
Send Email
Oct 5, 2000
10:11 am
206
I was hoping to include dmalloc on our RedHat Linux 7.0 with VA Linux Enhancements load. Unfortunately, when I went to build it, I discovered that the pre-3.0...
Michael Jennings
mej@...
Send Email
Oct 10, 2000
10:15 pm
207
I kind of heard gcc 2.96 (pre-3.0) will not produce compatible executables/libraries with 3.0 and 2.95 Perhaps using a different compiler is the best choice. ...
James Hawtin
oolon@...
Send Email
Oct 11, 2000
10:00 am
208
Hi, recently I installed dmalloc 4.6 and 4.7.1 on my computers. Checking my C++ apps against memory leaks I receive a: Error: pointer is null (err 20). Using...
jochen.wendiggensen@...
Send Email
Oct 18, 2000
9:29 am
209
On Wed, 18 Oct 2000 jochen.wendiggensen@... wrote: > Hi, > recently I installed dmalloc 4.6 and 4.7.1 on my computers. Checking > my C++ apps...
James Hawtin
oolon@...
Send Email
Oct 18, 2000
12:01 pm
210
Hi. Forgive me if this question has been answered before, but I'm trying to build dmalloc 4.7.1 using Sunpro 4.2 with little success. It doesn't like operator...
jodonn@...
Send Email
Oct 19, 2000
2:21 pm
211
Hi James, I'm using patch 2.5.3 with the patchfile attached. The patch is applied a directory above the installed dir /dmalloc-4.7.1 this gives me some HUNKS...
jochen.wendiggensen@...
Send Email
Oct 20, 2000
7:21 am
213
Howdy: Just released dmalloc version 4.8.0 available via the dmalloc home page: http://dmalloc.com/releases/ This version handles a couple of issues and...
Gray Watson
gray.egroups@...
Send Email
Nov 10, 2000
6:47 pm
214
Hi, i'm trying to find a memory leak in a parallel program, that uses MPI as message passing library. I'm using the LAM MPI implementation. For the first...
juergen@...
Send Email
Nov 14, 2000
2:33 pm
215
Howdy: Just released dmalloc version 4.8.1 available via the dmalloc home page: http://dmalloc.com/releases/ This is a patch release to fix problems with...
Gray Watson
gray.egroups@...
Send Email
Nov 15, 2000
4:03 pm
Messages 183 - 215 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