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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 260 - 289 of 529   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
260
I am using dmalloc with c++ and I need to be able to print line numbers and file names in my log file. I have been trying to down load the patch someone...
amanda.tolin@...
Send Email
Feb 5, 2001
9:12 pm
261
... Ok this seems to come up alot lets up it on my web space as mime attachments do not seem to be stored in the archive. I do not intend to remove this files,...
James Hawtin
oolon@...
Send Email
Feb 6, 2001
12:40 pm
262
I am having a similar problem on Solaris 2.7. My multithreaded application just hangs on a call to acquire a lock on a shared memory file. Just as Stanlislav,...
mlev043045@...
Send Email
Feb 9, 2001
4:57 am
263
I am having a problem getting the program to log memory leaks. I was accidentally using pieces of an older version along with version 4.8.1 and it was working...
amanda.tolin@...
Send Email
Feb 9, 2001
8:07 pm
264
I discovered that the cause of my app hanging was NFS. evil NFS! When I ran my app from local disk, the problem went way. Sorry about the chime. Stan could...
mlev043045@...
Send Email
Feb 9, 2001
8:10 pm
265
I'm trying dmalloc for the first time and I am getting an error during configure. I am on a SCO unixware 7.1.0 system using the latest dmalloc 4.8.1. I have...
Poletti, Don
don.poletti@...
Send Email
Feb 12, 2001
3:21 pm
266
I sent out a post before and I only got one response, which, although a very good suggestion, was on I already tried. I am hoping maybe if I explain my...
amanda.tolin@...
Send Email
Feb 12, 2001
8:24 pm
267
What language you using? C or C++? Got a log you can post? James...
James Hawtin
oolon@...
Send Email
Feb 13, 2001
1:21 pm
268
Pardon if this is a double post but my first one didn't seem to make the list. I am trying to compile dmalloc under sco unixware 7.1.0. I have both gcc and the...
Poletti, Don
don.poletti@...
Send Email
Feb 13, 2001
1:31 pm
269
Do you "NEED" c++ support? if not why not disable it in the build process? James...
James Hawtin
oolon@...
Send Email
Feb 13, 2001
1:44 pm
270
... YES...
Poletti, Don
don.poletti@...
Send Email
Feb 13, 2001
1:48 pm
271
... I'm using C++ with your C++ patch to print line numbers. I know it can work on my system because I have seen it work with an older version. It just isn't...
Amanda Tolin
amanda.tolin@...
Send Email
Feb 13, 2001
2:51 pm
272
You need to replace all the "new" commands with "D_NEW" So it picks up the special macro....
James Hawtin
oolon@...
Send Email
Feb 13, 2001
6:08 pm
273
NOOOOOOOOOOOOO!!!!!!!!! It screws up operator::new(.......) stuff Most of the time it works though, but thats why we are using D_NEW rather than #define new...
James Hawtin
oolon@...
Send Email
Feb 13, 2001
6:29 pm
274
No. I #defined D_New to new. ... Amanda :) ... ____________________________________________________________________ Get free email and a permanent address at...
Amanda Tolin
amanda.tolin@...
Send Email
Feb 13, 2001
6:29 pm
275
Well unfortunatly my choices are that, or not use the program. I have to print out line numbers or there is no point when dealing with a project this large...
Amanda Tolin
amanda.tolin@...
Send Email
Feb 13, 2001
6:41 pm
276
Thanks to everyone who was helping me fix my problem. I was unable to fix the problem but I did find a solution. What ever was causing the problem was in...
amanda.tolin@...
Send Email
Feb 14, 2001
5:25 pm
277
I was just wondering if anybody had modified the code to use static values instead of reading them in from an enviorment. I am trying to get dmalloc to work...
amanda.tolin@...
Send Email
Feb 19, 2001
3:46 pm
278
... Why not just use a putenv in the first line of your program? James...
James Hawtin
oolon@...
Send Email
Feb 21, 2001
4:27 pm
279
I'm trying to track down a memory corruption problem in Apache+mod_perl. Has anyone here had any experience building Apache and/or Perl with dmalloc or other...
Skip Montanaro
skip@...
Send Email
Feb 23, 2001
7:21 pm
280
Yo: Just released dmalloc version 4.8.2 available via the dmalloc home page: http://dmalloc.com/releases/ This is a patch release to fix problems with...
Gray Watson
gray.eg@...
Send Email
Feb 26, 2001
7:49 pm
281
I have two problems using dmalloc. The first is a simple compile error in my code (it shows up with "gcc -W -Wall -Werror" on Linux with glibc-2.x, and...
Michael Poole
poole@...
Send Email
Mar 21, 2001
2:25 pm
282
Hello all, I recently started using dmalloc. I want to track a segmentation fault in a very large program, namely a modified ns-2 (network simulator) mostly...
Athanassios Boulis
boulis@...
Send Email
Mar 28, 2001
10:50 pm
283
... Unfortunately I've not used the start feature in a while. In looking at the code it seems that it is doing something I'm sure you didn't anticipate. When...
Gray Watson
gray.eg@...
Send Email
Mar 28, 2001
11:53 pm
284
Hello, I got this error when running my application on AIX 4.3. My options: DMALLOC_OPTIONS=debug=0x4f47d43,inter=100,log=/home/dmayi/aen33s/bin/s 5dmalloc.log...
mlev043045@...
Send Email
Mar 29, 2001
12:13 am
285
Thank you very much for the quick reply! I have several more questions. ... I am not sure what you mean by "beginning" ... if I do 'dmalloc -s test1.c:0 -m...
Athanassios Boulis
boulis@...
Send Email
Mar 29, 2001
12:44 am
286
... Basically, dmalloc does a lot of checking on a pointer-by-pointer basis. Most of this cannot be disabled. When you free(x) it always checks a number of...
Gray Watson
gray.eg@...
Send Email
Mar 29, 2001
1:18 am
287
Just change the inetration interval dynamically! #ifdef DMALLOC extern unsigned long _dmalloc_check_interval; #endif main { #ifdef DMALLOC ...
James Hawtin
oolon@...
Send Email
Mar 29, 2001
2:34 pm
288
Has anybody ever used dmalloc with vectors and run into problems? I don't know much about vectors or how they work, but people I work with have been having...
amanda.tolin@...
Send Email
Apr 4, 2001
8:12 pm
289
I'm not sure I understand the question you're asking, but here's my interpretation: You're using C++ and STL vectors, right? C++'s new operator allocates the...
B. Scott Michel
scottm@...
Send Email
Apr 4, 2001
9:01 pm
Messages 260 - 289 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