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 398 - 430 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
398
I don't seem to be getting Source Line Numbers referring to my C++ sources. Is that correct? How do I fix that. Thanks in advance Barry...
rumpole6
Offline Send Email
Jul 1, 2002
6:31 pm
400
Hi, I am a newbie to the tool and would like to get some help on using the tool for a multi-threaded process. I have gone through the documentation and...
kenerioo
Offline Send Email
Jul 20, 2002
1:55 am
401
Using the src.rpm bundle, I rebuilt the libraries and saw that --enable-threads was used. My code has a main program which uses pthreads and has quite a few ...
humbugzilla
Offline Send Email
Jul 31, 2002
1:09 pm
402
... Hmmm. If you are sure that you are linking with the threaded library then this message should not happen. What I have seen recently is that you should...
Gray Watson
graywatson1
Offline Send Email
Jul 31, 2002
2:20 pm
403
Thanks, though I'm still not out of the woods. I rebuilt my executable linking with dmallocth, and rebuilt my shared libs to be sure of not using dmallocth....
humbugzilla
Offline Send Email
Aug 2, 2002
3:37 pm
405
Hi, After installing dmalloc successfully, i compiled a sample program . But the log file is not generated. Why? I used the following commands. I have...
balaji_raman7_2000
balaji_raman...
Offline Send Email
Aug 6, 2002
8:45 am
406
Hi Balaji, You have to link your application with the dmalloc library. For example, your compile line should be: "gcc -DDMALLOC -o matmul -I include/ matmul.c...
Thirumurugan G
gmurugan@...
Send Email
Aug 6, 2002
9:02 am
407
Hello, I've seen several messages on this group from people who have had problems linking the dmalloc library into their c programs, but I haven't seen the...
mwbecker1
Offline Send Email
Aug 14, 2002
7:44 pm
408
I am on HP-UX 11.11 using dmalloc 4.8.2. I have successfully used dmalloc to trace an application for some time now, but when I added calls to libc function...
jbacklund
Online Now Send Email
Aug 27, 2002
11:46 am
409
... I'm sure there is. Sounds like mallinfo is the malloc information routine for the systems malloc library. If you are using dmalloc, I doubt that mallinfo...
Gray Watson
graywatson1
Offline Send Email
Aug 28, 2002
3:28 pm
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
Offline 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
Online Now 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
Messages 398 - 430 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