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 489 - 529 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
489
... 5.1.0 should work fine on Solaris. Another option is using Solaris' builtin watchmalloc, which can detect some things dmalloc can't, but can't detect some...
Dan Nelson
Genesys_
Offline Send Email
Jun 11, 2003
8:37 pm
490
All the links for 5.1.0 on the website are stale. anyone has the url they downloaded it from? thanks -rsa...
rsa_show
Offline Send Email
Jun 11, 2003
8:48 pm
491
Oops, I meant to say, All the links for COMPILED & BUILT images of 5.1.0 on the website are stale. -rsa ... info....
rsa_show
Offline Send Email
Jun 11, 2003
8:53 pm
493
Howdy: Feature release up on the download sites. Added a number of logfile expansion % strings: %u in the logfile path expands to getuid() output. %h expands...
Gray Watson
graywatson1
Offline Send Email
Jun 14, 2003
3:29 am
494
Question for all of those shared library users out there. Most of my dmalloc usage is with statically linked binaries and I know that my shared library usage...
Gray Watson
graywatson1
Offline Send Email
Jun 14, 2003
3:47 am
495
Hello all: I am trying to compile my program with dmalloc, but I just cant get the makefile to work right. Since I am new with make this is difficult for me. I...
jwblair_2000
Offline Send Email
Jun 17, 2003
5:13 am
496
... ^ Append -ldmalloc to this line ... ^ The bottom 3 lines need to be on one long line, or multiple tab-indented lines with trailing \ continuation...
Dan Nelson
Genesys_
Offline Send Email
Jun 17, 2003
5:17 am
497
At the top of dmalloc.h, there's a test that determines the return type of all the wrapped functions. It ends up setting DMALLOC_PNT to void* in the C++ case....
Dan Nelson
Genesys_
Offline Send Email
Jun 18, 2003
9:49 pm
498
... Yes it does Dan. Like duh. Not sure why I didn't see this before. I'll push it into the main line right now. ... gray.eg3@... Copyright 2003 by...
Gray Watson
graywatson1
Offline Send Email
Jun 18, 2003
10:03 pm
508
1056945713: 13217: not freed: '0x80f5008|s1' (12346 bytes) from 'ra=0x4034b2cb' Hi I'm getting these lines in my logfile and I want to know where this return...
Flash Fyre
flashfyre_2000
Offline Send Email
Jul 8, 2003
7:46 pm
509
Dear All, Has anyone else tried porting dmalloc to the new release of Max OS X? (10.2.6) I can ./configure and compile ok (though the new gcc 3.1 preprocessor ...
designbynumbers
Offline Send Email
Jul 8, 2003
7:46 pm
510
Howdy: Bug fix release up on the download sites. Fixed a problem with macro arguments in the dmalloc.h not being enclosed in parenthesis. Also fixed a...
Gray Watson
graywatson1
Offline Send Email
Jul 8, 2003
7:46 pm
511
Hi all, I have a program that use threads and a lot of mallocs that sometimes crashes, I try to use dmalloc to see if I can catch the problem but when I try to...
Eduardo Reis
esgr_pt
Offline Send Email
Jul 8, 2003
7:46 pm
512
... First off, you should do the -a on the 0x80f5008 address NOT the ra address. ... This may be inside of a system library which does not have symbols loaded...
Gray Watson
graywatson1
Offline Send Email
Jul 8, 2003
8:06 pm
513
This program created some threads, do a work, and when stopping calls this function: int i; pthread_mutex_lock(&appStopMutex); /* Send information to all the...
Eduardo Reis
esgr_pt
Offline Send Email
Sep 8, 2003
1:25 pm
514
I think there is a bug in _dmalloc_chunk_pnt_check that causes false positives to be raised by dmalloc. If debugging is set high enough, then...
typerlc
Offline Send Email
Sep 8, 2003
1:25 pm
515
Hi, We are developing an embedded system based on MIPS,PowerPc,SiByte, architecture. Can I use dmalloc for these architectures? Thanks, Girish...
Girish Kale
girishdkale
Offline Send Email
Sep 8, 2003
1:25 pm
516
I'm having trouble getting dmalloc to work on Gentoo linux. When I run a program statically linked with dmallocth, I get an immediate segfault at malloc.c:983...
james_dancebee
Offline Send Email
Sep 8, 2003
1:26 pm
517
I'm trying to compile dmalloc_argv on Windows 98 using the makefile provided with dmalloc 5.2.1 and I'm getting error "error: conflicting types for...
Brian Schreder
bschreder
Offline Send Email
Sep 8, 2003
1:26 pm
518
Hey: So there's been a long standing problem with using dmalloc under cygwin because of the use of getenv in malloc(). As far as I have been told, cygwin goes...
Gray Watson
graywatson1
Offline Send Email
Sep 8, 2003
1:26 pm
519
[ First off, after putting up with spam for a while, I've turned the dmalloc list into a moderated one. Unfortunately, pending messages were stuck in the...
Gray Watson
graywatson
Offline Send Email
Sep 8, 2003
4:02 pm
520
Howdy: Bug fix release up on the download sites. The big fix is a resolution (hopefully) to the function argument checking. Please let me know ASAP if you...
Gray Watson
graywatson
Offline Send Email
Sep 8, 2003
4:09 pm
521
... Could this be done automatically via a constructor? i.e. in libdmalloc, have this: #if defined(GETENV_CALLS_MALLOC) static void dmalloc_init()...
Dan Nelson
Genesys_
Offline Send Email
Sep 8, 2003
5:59 pm
522
dmalloc is pretty portable and architecture neutral. You might have a problem or two with overriding the libc versions of malloc (not very likely, but could...
Scott Michel
pingbak
Offline Send Email
Sep 8, 2003
6:02 pm
523
... Good one. Stupid of me. Fixed in the mainline. I just replaced all instances of environ in process_env (dmalloc_argv.c:2896) to env_val. ... Well it...
Gray Watson
graywatson
Offline Send Email
Sep 8, 2003
7:41 pm
524
I've noticed that dmalloc will be able to report mallocs made by internal glibc functions. (In particular, calls like setprotoent()). glibc does free them, as...
Danny Sung
dannys42
Offline Send Email
Sep 28, 2003
2:46 am
525
Howdy: So I have [finally] started the process of migrating off of Yahoo groups. When I started using egroups, they were lightweight and full featured. The...
graywatson
Offline Send Email
Sep 29, 2003
10:28 pm
526
[ Original post on http://dmalloc.com/forums/topic_show.pl?tid=8 ] Bug fix release up on the download sites. Added some better handling for Cygwin...
graywatson
Offline Send Email
Sep 30, 2003
12:17 am
527
[ This message has been posted at the new Dmalloc forums. Please visit the following URL and/or subscribe to the forum to see the discussion....
Srikumar
srikumarss
Online Now Send Email
Nov 11, 2003
3:13 pm
529
[ This message has been posted at the new Dmalloc forums. Please visit the following URL to see the discussion. http://dmalloc.com/forums/topic_show.pl?tid=40...
Gray Watson
graywatson
Offline Send Email
Jan 28, 2004
3:27 pm
Messages 489 - 529 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