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...
Show off your group to the world. Share a photo of your group with us.

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 411 - 445 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
411
In item 4 of Section 2.2 (Getting Started with the Library) of the Dmalloc tutorial, it says to add in my .profile the following line, for a ksh shell: ...
diegoviademonte
Offline Send Email
Sep 6, 2002
9:24 pm
412
... SCO's ksh is probably incompletely implemented. Try '\dmalloc' instead of "command dmalloc"? If you end up with infinite recursion, try: function...
Scott Michel
pingbak
Offline Send Email
Sep 6, 2002
9:33 pm
413
The following solved the problem: function dmalloc { eval `/usr/local/bin/dmalloc -b $*`; } (My version of ksh doesn't support the "which" command you...
diegoviademonte
Offline Send Email
Sep 6, 2002
10:58 pm
414
Hello, I am a little perplexed about this problem and am a little embarrased about not being able to figure this out alone. But, here is my problem. I'm using...
sorton9999
Offline Send Email
Sep 10, 2002
4:11 pm
415
Here is a howto for dmalloc using AIX 5L and xlc For xlc compiler: 1. CC='xlc_r' ./configure --enable-threads 2. settings.h ifndef LOCK_THREADS #define...
Freddie M
chip_boox
Offline Send Email
Sep 11, 2002
7:01 pm
416
Hi, I looked at the dmalloc documentation. Some of it suggests that it is nice to add #include dmalloc.h into the C/C++ files while some suggests it is...
raygto
Online Now Send Email
Sep 17, 2002
1:05 am
417
It isn't absolutely necessary, but it's daggone helpful to get full advantage out of dmalloc. Without including the headers, you won't get full line number...
William Harris
williamharri
Offline Send Email
Sep 17, 2002
1:17 am
418
Agreed, And it's no pain to insert those includes. Just encapsulate them within an '#ifdef USE_DMALLOC' and you'll have to do it once and you can select during...
Martijn Schoemaker
martijn@...
Send Email
Sep 17, 2002
7:21 am
419
I am trying to build dmalloc on a Solaris machine w/ the WorkShop Compilers 5.0. I found that the inclusion of stdlib.h is wreaking havoc on the build....
ewest02
Offline Send Email
Sep 17, 2002
7:08 pm
420
Hello, I've just started to use the dmalloc utility and I'm having issues with getting the utility to pickup the environment variables. I've set them and...
ljwu805
Offline Send Email
Sep 18, 2002
7:50 pm
421
I forgot to mention that this is running under FreeBSD 4.5-Release ... it ... from 'http://dmalloc.com/' ... then ... linked ... library ... times. ... as...
ljwu805
Offline Send Email
Sep 18, 2002
7:55 pm
422
... Hmm. This is strange and I don't understand it. Can you print the value of getenv("DMALLOC_OPTIONS") in your program? It should print out the above...
Gray Watson
graywatson1
Offline Send Email
Sep 18, 2002
9:10 pm
423
Okay, I've tried to print out the env variable. I can do it when I link the libdmalloc library. Comes out as env values:...
ljwu805
Offline Send Email
Sep 19, 2002
12:11 am
424
... Looks good. ... Ah yes. This is because for some STUPID reason, open (which is supposed to be a syscall) under FreeBSD does a malloc. Probably just in...
Gray Watson
graywatson1
Offline Send Email
Sep 19, 2002
12:23 am
425
Hi, I've been trying to use libdmallocthcxx.so with my app and it keeps complaining that thread locking is not configured. It took some digging, but it turns...
Robert Sim
simraca
Offline Send Email
Sep 27, 2002
2:59 am
426
Hi , I started working on dmalloc only today. Your trick of changing a.out to a.exe in the MakeFile did get me across the initial hurdle. But as cited in the...
arvind_raman_tech
arvind_raman...
Offline Send Email
Nov 19, 2002
1:56 pm
427
Hi all, I am trying to find out some tools to test my application for memory leaks and other run time bugs. I am running an embedded application on Synergy's...
karthikg_krishna
karthikg_kri...
Offline Send Email
Nov 20, 2002
6:01 pm
428
Hello all, I'm having a small problem I recently had my sys admin install dmalloc into the server so we could work on memory problems. Well I checked and made...
Dale Kingston
cyperponk
Offline Send Email
Dec 2, 2002
10:11 am
429
Dmallocers, I was expecting the small program below to output some fence post error messages but my logfile does not mention anything. What am I doing wrong ! ...
havonix2000
Offline Send Email
Dec 2, 2002
10:38 am
430
Hi i have a problem including the dmalloc header in my source-files. when i attempted to compile ( using cc on AIX ) the following error-msg appeared several...
ziptroo <ziptroo@...>
ziptroo
Offline Send Email
Dec 7, 2002
4:47 pm
433
Hi, I'm new to group. I configured and run dmalloc library for by program. Following is the log part of log I got: 1009912582: 2: dumping not-freed pointers...
Ajit Bhat
avbhat
Offline Send Email
Dec 23, 2002
8:28 am
434
I'm trying to port dmalloc 4.8.2 to z/OS (yes, MVS) under its Unix Systems Services. During configure I get a warning saying it detected that heaps can grow...
Tony Reyelts <reyelts...
reyelts
Offline Send Email
Jan 12, 2003
3:41 am
435
Hi everyone, I'm new to dmalloc so please bear with me. I'm running it on SuSE Linux 8.0, compiled on gcc 2.95.3, and using gdb 5.1.1 for debugging. I've used...
João Batista
jmnbpt
Offline Send Email
Jan 16, 2003
5:32 pm
436
Sounds a bit like a thread stack; how many threads were you running? Thread stacks won't be seen by dmalloc because the O/S isn't using dmalloc. Therefore,...
Scott Michel
pingbak
Offline Send Email
Jan 16, 2003
6:45 pm
440
I am new dmalloc, and I was wondering why am I having so many problems with dmalloc.h conflicting with math.h? I need to use both since most of my/our code is...
jwblair_2000 <jwblair...
jwblair_2000
Offline Send Email
Feb 24, 2003
10:52 pm
441
I'm sure I'm asking a really dippy question here, but what does the compiler output look like so that the list membership can diagnose the actual problem? What...
Scott Michel
pingbak
Offline Send Email
Feb 25, 2003
12:49 am
442
Thanks for replying... Well I am using AIX5L on a IBM P690 with 2048MB RAM with many GB of hard drive space and 24 processors. The messages that I get from the...
jwblair_2000 <jwblair...
jwblair_2000
Offline Send Email
Feb 25, 2003
2:35 pm
443
... I too have had lots of these kinds of errors on linux. Usually I edit the dmalloc.h file until the errors go away. Also, make sure you #include dmalloc.h...
Robert Sim
simraca
Offline Send Email
Feb 25, 2003
3:41 pm
444
I solved the problem. I coppied stdlib.h to my local directory and change the names of the functions in stdlib.h that are overwritten by dmalloc. Now it works...
jwblair_2000 <jwblair...
jwblair_2000
Offline Send Email
Feb 25, 2003
4:21 pm
445
Once upon a time, configure correctly detected the return type for malloc, et. al., but given that StdC has been out there for so long, Gray may have ditched...
Scott Michel
pingbak
Offline Send Email
Feb 25, 2003
6:25 pm
Messages 411 - 445 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