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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 330 - 365 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
330
Hi, I just wanted to share my experience with getting threaded dmalloc working on AIX 4.3.3. My major breakthrough came with using the xlC_r7 compiler to ...
Warwick Burrows
wburrows@...
Send Email
Aug 3, 2001
10:42 pm
332
I modified dmalloc 4.8.2 to get USE_DMALLOC_LEAP working, is anyone inetersted in my changes?...
arm000@...
Send Email
Aug 22, 2001
7:38 pm
333
Hi, I'm using dmalloc 4.8.2 in Redhat Linux 7.1 and it's reporting that certain memory in my threaded C program is not being freed when I'm 99.99999% positive...
Daniel Ceregatti
shemp@...
Send Email
Aug 29, 2001
10:21 pm
334
I stumbled across this while searching for the cause of my dmallc error at exit. Maybe you know about it, maybe you don't, but it's a good thing to know if you...
Daniel Ceregatti
shemp@...
Send Email
Aug 30, 2001
12:36 am
335
... This is the "free(NULL) is guaranteed safe" issue. free(NULL) has always been documented as safe in standard c libraries. Dmalloc _defaults_ to...
Randell Jesup
rjesup@...
Send Email
Aug 30, 2001
8:59 pm
337
Hi, Has anyone ported dmalloc to vxworks ? We are having some trouble doing so, and would like some help thanks Siddharth...
sram@...
Send Email
Oct 1, 2001
9:11 pm
338
... I started too... but I never finished because I got pulled onto another project. What kind of problems are you having? Amanda ...
Amanda Tolin
amanda.tolin@...
Send Email
Oct 2, 2001
1:30 pm
340
G'day all, I'm using dmalloc on FreeBSD with threading enabled, and am having problems with recursion when dmalloc attempts to open the log file. It seems that...
pah_watson@...
pah_watson
Offline Send Email
Oct 23, 2001
4:43 am
341
... you need a "lockon" of circa 4. Basically, allow the first few allocations (of thread structures) to go through without checking. I do this with Mozilla...
Randell Jesup
rjesup@...
Send Email
Oct 23, 2001
11:15 pm
342
I don't know whether this is a problem with dmalloc, or just something I'm doing wrong in my code. ... #include <stdio.h> #include <strstream.h> #ifdef DMALLOC...
Karr, David
davidmichael...
Offline Send Email
Nov 7, 2001
8:01 pm
343
Yes, I know "delete(0)" is supposed to be a noop. What does this have to do with GNU? And what pointer exactly is NULL? I tried doing something odd like...
David Karr
davidmichael...
Offline Send Email
Nov 7, 2001
8:44 pm
344
HPUX 11.0, dmalloc 4.8.2 with the cxx_dmalloc-4.8.2.diff patch applied. There's a comment in conf.h that says: * NOTE: the value will never be auto-configured...
William Harris
williamharri
Offline Send Email
Nov 9, 2001
6:50 pm
345
I am having trouble getting the module name and line number to appear in the logfile when I debugg my C++ code. On the positive side I have done the following:...
Daniel Grau
grau@...
Send Email
Nov 15, 2001
6:41 pm
346
You need the separate C++ patch. I don't have a pointer to it at the moment, but there have been some messages posted about it not too long ago. Look at the...
William Harris
williamharri
Offline Send Email
Nov 16, 2001
12:02 am
347
Dear all, I'm getting error 46: "external sbrk too large, cannot be handled" with release 4.8.2 on a Linux (RedHat 6.2) dual processor. The library compiled...
saraniti@...
saranao
Offline Send Email
Nov 30, 2001
3:21 pm
349
... This is basically an internal limit problem. You can do an end run around it by increasing the BASIC_BLOCK setting in the conf.h file. I need to rewrite...
Gray Watson
graywatson
Offline Send Email
Dec 3, 2001
4:42 pm
350
Hi, I'm new to using dmalloc but have read the info pages and searched the archives and couldn'd find anthing relative to my problem... so if this is redundant...
ray_jenkins_98
Online Now Send Email
Dec 13, 2001
8:59 pm
351
... Sounds like dmalloc has caught a problem you didn't know was there Ray. :-) Malloc libraries often allocate more memory than you ask for due to efficiency...
Gray Watson
graywatson
Offline Send Email
Dec 13, 2001
9:15 pm
353
... I'm guessing that's a typo and he meant "sloppy". William Harris williamharri@......
William Harris
williamharri
Offline Send Email
Dec 14, 2001
12:56 am
354
Hi, I've been using dmalloc to rid my multi-threaded, dlopen() using app and it's been wonderful so far. I've been able to eliminate every leak where I...
Daniel Ceregatti
primenumb3r
Online Now Send Email
Dec 27, 2001
9:43 pm
356
Hi Guys, I just started using dmalloc and I'm getting some strange results on an HPUX machine. I'm not sure if I'm doing something wrong or if I don't...
tmorset
Offline Send Email
Dec 28, 2001
7:36 pm
357
Hi, i am trying to trace the location of a memory leak in my program. Dmalloc gives me the founction (say A ) which make the call to malloc. I want to trace up...
Alefiya Hussain
alefiyahussain
Offline Send Email
Jan 5, 2002
3:36 pm
358
Sorry for the delay. ... This is probably memory associated with stdin/out/err or some such. There are usually system resources which are not freed or are...
Gray Watson
graywatson
Offline Send Email
Jan 9, 2002
3:08 pm
359
Seems like building the thread safe shared libs is broken. On Linux, gcc-2.95.2 I tried: ./configure --enable-threads make threads It compiled everything with...
grekker2002
Offline Send Email
Jan 28, 2002
3:10 pm
360
Is it possible to ask dmalloc to return the total allocated memory at a given point in a program? preferably by inserting a call (to dmalloc) in the program...
wootletootle
Offline Send Email
Feb 1, 2002
6:17 am
361
I'm using dmalloc 4.8.2 on Mandrake 8.1 to debug a small C library I'm writing (the library fakes large files on systems that don't have them). In addition to...
Skip Montanaro
smontanaro
Offline Send Email
Feb 12, 2002
6:51 pm
362
... Hrmm. It does look like it should be fine. The only way for the ERROR_NOT_IN_HEAP (21) is generated if the pointer is out-of-bounds of the range set by...
Gray Watson
graywatson1
Offline Send Email
Feb 12, 2002
10:51 pm
363
Hi, I have problems using dmalloc 4.8.2 (including a 4.8.1 patch for using new operators with the file-line-number) on mandrake linux 8.0. I compiled my...
kittnerma
Offline Send Email
Feb 14, 2002
4:23 pm
364
... I suspect that the library is trying to segfault. Any internal errors such as the above indicate that something is trashing the dmalloc structures. I'd up...
Gray Watson
graywatson1
Offline Send Email
Feb 14, 2002
8:49 pm
365
Yo: In case anyone cares, I just released version 1.1.0 of my diskheap library which provides heap functionality on disk. It allows you to: diskheap_store -...
Gray Watson
graywatson
Offline Send Email
Feb 16, 2002
12:43 am
Messages 330 - 365 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