Another posting in a Tru64 group gave me the answer. Thanks for the emails I received. Anyone interested in the answer can email me. Erik...
erik.kleinbussink@...
Jan 2, 2001 6:19 pm
256
Good morning to all, When I use dmalloc my program runs OK, without it it crashes. Any suggestions ?????????? Nikolaos Abatzis Consultant Blackboard Inc 1899 L...
Nikolaos Abatzis
nabatzis@...
Jan 3, 2001 5:36 pm
257
Enable more scanning options, check for memory over runs, abort on errors! You might have problems you have over looked line double frees or memory over runs,...
James Hawtin
oolon@...
Jan 3, 2001 5:40 pm
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@...
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@...
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@...
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@...
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@...
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@...
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@...
Feb 12, 2001 8:24 pm
267
What language you using? C or C++? Got a log you can post? James...
James Hawtin
oolon@...
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@...
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@...
Feb 13, 2001 1:44 pm
270
... YES...
Poletti, Don
don.poletti@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
Feb 19, 2001 3:46 pm
278
... Why not just use a putenv in the first line of your program? James...
James Hawtin
oolon@...
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@...
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@...
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@...
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@...
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@...
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@...
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@...
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...