Hi, Installed version dmalloc-4.7.1-1 on Linux system using rpm, and followed the instructions, including the shell command: "dmalloc -l mydmalloc.log -i 10...
jonathan@...
Oct 4, 2000 3:12 pm
202
Your interations are too low ... try this #ifdef DMALLOC extern unsigned long _dmalloc_check_interval; #endif main() { #ifdef DMALLOC ...
James Hawtin
oolon@...
Oct 4, 2000 4:08 pm
203
... Unfortunately, dmalloc_debug does not initialize the library. The 1st allocation will do that. This is counter-intuitive and will be fixed in the next...
Gray Watson
gray.egroups@...
Oct 4, 2000 7:01 pm
205
... I got round that one by mallocing 1 byte and freeing it at the beginning of the program to initalise dmalloc. James...
James Hawtin
oolon@...
Oct 5, 2000 10:11 am
206
I was hoping to include dmalloc on our RedHat Linux 7.0 with VA Linux Enhancements load. Unfortunately, when I went to build it, I discovered that the pre-3.0...
Michael Jennings
mej@...
Oct 10, 2000 10:15 pm
207
I kind of heard gcc 2.96 (pre-3.0) will not produce compatible executables/libraries with 3.0 and 2.95 Perhaps using a different compiler is the best choice. ...
James Hawtin
oolon@...
Oct 11, 2000 10:00 am
208
Hi, recently I installed dmalloc 4.6 and 4.7.1 on my computers. Checking my C++ apps against memory leaks I receive a: Error: pointer is null (err 20). Using...
jochen.wendiggensen@...
Oct 18, 2000 9:29 am
209
On Wed, 18 Oct 2000 jochen.wendiggensen@... wrote:
> Hi, > recently I installed dmalloc 4.6 and 4.7.1 on my computers. Checking
> my C++ apps...
James Hawtin
oolon@...
Oct 18, 2000 12:01 pm
210
Hi. Forgive me if this question has been answered before, but I'm trying to build dmalloc 4.7.1 using Sunpro 4.2 with little success. It doesn't like operator...
jodonn@...
Oct 19, 2000 2:21 pm
211
Hi James, I'm using patch 2.5.3 with the patchfile attached. The patch is applied a directory above the installed dir /dmalloc-4.7.1 this gives me some HUNKS...
jochen.wendiggensen@...
Oct 20, 2000 7:21 am
213
Howdy: Just released dmalloc version 4.8.0 available via the dmalloc home page: http://dmalloc.com/releases/ This version handles a couple of issues and...
Gray Watson
gray.egroups@...
Nov 10, 2000 6:47 pm
214
Hi, i'm trying to find a memory leak in a parallel program, that uses MPI as message passing library. I'm using the LAM MPI implementation. For the first...
juergen@...
Nov 14, 2000 2:33 pm
215
Howdy: Just released dmalloc version 4.8.1 available via the dmalloc home page: http://dmalloc.com/releases/ This is a patch release to fix problems with...
Gray Watson
gray.egroups@...
Nov 15, 2000 4:03 pm
216
Hi List, I'm considering to use dmalloc and gdb to catch memory access using i386 memory protection features. Is there a know and convenient way to do it...
Vadim Fedukovich
vadim@...
Nov 16, 2000 2:24 pm
217
I changed the way the log file was written to and made the code opne the log file with append each time it wants to write to it, log entries also have the...
James Hawtin
oolon@...
Nov 20, 2000 6:18 pm
218
... Hi, thanks for changing this. In the meantime I modified my program in a way that it changes the logfile name in the environment variable DMALLOC_OPTIONS...
Juergen Wakunda
juergen@...
Nov 20, 2000 6:51 pm
221
... I'm planning in 4.9.0 to have the following expanded in the dmalloc logfile: %p - process-pid %h - hostname I'd like the do the following as well if I can...
Gray Watson
gray.egroups@...
Nov 20, 2000 9:17 pm
222
All, Dmalloc generates some return addresses to log file which gdb is telling there is no corresponding line number. I don't know why? My exe uses couple of...
ragunathd@...
Nov 21, 2000 4:23 am
223
All, I would like to have a feature in dmalloc. Let us say, i have the following function structure, getCustomerName() calls appMalloc() calls, /* Memory...
ragunathd@...
Nov 21, 2000 4:45 am
224
Ok here is the log patch again, its against 4.7.1 I have not updated it to
4.8.1 yet.
James
diff -ru dmalloc-4.7.1.ref/dmalloc.h.3 dmalloc-4.7.1/dmalloc.h.3 ...
James Hawtin
oolon@...
Nov 21, 2000 10:04 am
227
Thats kind of really difficult to do..... and quite easy.... Its really difficult to do generically, however is easy for your to do with your version..... To...
James Hawtin
oolon@...
Nov 21, 2000 10:47 am
229
I notice again the C++ debugging for dmalloc has not been enhanced. We
have had discussions about C++, and I have posted a few patches mostly the
same rework...
James Hawtin
oolon@...
Nov 22, 2000 5:39 pm
230
Hi all, I've just started using dmalloc with a program and came across a strange problem which I don't understand. It would appear I'm doing something wrong...
Raymond Wan
rwan@...
Nov 24, 2000 4:49 am
231
Check your dmalloc options one of them causes an "abort" on errors this would cause your program to jump into the memory freeing section.... Use this line to...
James Hawtin
oolon@...
Nov 24, 2000 11:12 am
232
... Register Chinese Character Domain Name- ONLY US$15/year! 100 Chinese Domain Names are registered every minute! Time is clicking, what are you waiting for? ...
hannibal
hannibal@...
Nov 27, 2000 3:57 am
233
... This is incorrect. abort() on most unix operating systems at least will bring down the program immediately without freeing memory. ... gray.reply@......
Gray Watson
gray.egroups@...
Nov 27, 2000 2:58 pm
234
... Warning bells sound. I bet that you are assuming that memory gotten from a call to malloc() has 0s in it. The Dmalloc library writes 0xc5 into allocated...
Gray Watson
gray.egroups@...
Nov 27, 2000 3:03 pm
235
%% Gray Watson <gray.egroups@...> writes: gw> The Dmalloc library writes 0xc5 into allocated memory when the gw> alloc-blank token is enabled. gw>...
Paul D. Smith
psmith@...
Nov 27, 2000 3:27 pm
236
All, What does this error mean? 975434936: 32604: free: pointer is not on block boundary: pointer '0xdd0164' from 'ra=0x1e7828' 975434936: 32604: ERROR:...
Ragunath Devarasu
ragunathd@...
Nov 28, 2000 6:46 pm
237
Pointers normally are aligned to 4 or is it 8 byte bounaries that one was obviously corrupt so dmalloc ignored it. ra=0x1e7828 was the location in memory it...