Hi, I am trying to use dmalloc to test a mall test program to see how it works I have successfully complied dmalloc on FreeBSD 4.2-RELEASE Kernel- 1.17 All...
alefiyahussain@...
May 3, 2001 5:51 pm
299
setenv DMALLOC_OPTIONS log-stats,log-non-free,log-trans,check-heap,inter=100,log=wibble.log; or setenv DMALLOC_OPTIONS debug=0x80b,inter=100,log=wibble.log; ...
James Hawtin
oolon@...
May 3, 2001 8:58 pm
300
Try this your program t.c and I am doing this in the same directory as dmalloc is compiled in #include <dmalloc.h> main() { int a; int i; char *string; ...
James Hawtin
oolon@...
May 3, 2001 9:14 pm
301
Hi, I am using dmalloc for the first time. Our team is using the GNU C++ compiler on an embedded PowerPC product. We use the AT&T Labs OmniORB CORBA libraries...
Gentry, Ken
ken.gentry@...
May 4, 2001 9:36 pm
302
Try modifing the header file to remove the macros then! I change it to MALLOC ALLOC REALLOC and FREE, then do search and replaces on my code. if I want to...
James Hawtin
oolon@...
May 5, 2001 10:36 am
303
Hi All, I'm using dmalloc on an embedded PowerPC Linux system. We do not have access to GDB. I got a clean build using the C++/multithreaded dmalloc library, ...
Gentry, Ken
ken.gentry@...
May 7, 2001 8:46 pm
304
Just wanted to share with the Dmalloc group... The asm instructions in return.h for PowerPC that provide return address of the caller who allocated memory,...
Gentry, Ken
ken.gentry@...
May 16, 2001 7:43 pm
305
Hello all, I'm trying to find a bug in LPRng-3.6.9 where a call to realloc core dumps. After compiling in dmalloc (at the advise of the author, Patrick...
bush@...
May 18, 2001 7:31 pm
306
Naveen Chandra
naveen@...
May 27, 2001 7:19 pm
307
You sure you have turned on fence post checking? [Oolon in the sunset] pwd /oolon4/home/oolon/dmalloc/dmalloc-4.8.2 [Oolon in the sunset] gcc -I. test.c -L....
James Hawtin
oolon@...
May 29, 2001 10:43 am
308
Thanks a lot. When I try to access memory beyond my data space program aborts with debug-malloc library: dumping program, fatal error Error: free space has...
Naveen Chandra
naveen@...
May 29, 2001 5:04 pm
309
Sorry , the program is not correct, malloc is wrong, it was supposed to be malloc(20) not malloc(sizeof(20)). It works perfectly. Thanks again James for the...
Naveen Chandra
naveen@...
May 29, 2001 5:56 pm
310
Also if I go beyond and access memory which was allocated statically, is there a way in dmalloc I can catch this? Thanks in advance. ... From: James Hawtin...
Naveen Chandra
naveen@...
May 29, 2001 10:53 pm
311
... Dmalloc only checks memory that is alloced through dmalloc, this does not include statically alloced memory, as dmalloc has no idea where it is. You could...
James Hawtin
oolon@...
May 30, 2001 1:51 am
312
Just curious if anyone has tried this. I'm using a Motorola Coldfire processor with Usx operating system. My compiler and linker are from Microtec Research...
btolbert@...
Jun 7, 2001 2:51 am
313
Anyone tried to use dmalloc in a class that has it's own operator new? Any way to do the bookkeeping without having dmalloc allocate the memory or otherwise...
btolbert@...
Jun 8, 2001 5:46 pm
314
Seems to have become _dmalloc_address, but dmalloc.h still has the old name. Is this correct or am I very confused? (I downloaded 4.8.2 and applied the c++...
Richard Caley
richard@...
Jun 22, 2001 10:41 am
315
I ran into problems with dmalloc 4.8.2 and strdup. Specifically, on my system (a Red Hat Linux system), strdup() becomes a very complex macro, that can either...
Jeremy White
jwhite@...
Jun 25, 2001 8:08 pm
316
Okay, on a bit further reflection, this looks like two issues. First, dmalloc needs to adopt __strdup, not just strdup. Jeff Johnson has very kindly adopted...
Jeremy White
jwhite@...
Jun 26, 2001 5:11 pm
317
Hello, while looking for a memory problem in the ospf daemon of the zebra package (see www.zebra.org) I ran into the following message: host#...
Markus Germeier
mager@...
Jun 28, 2001 11:07 am
318
... My data size was set to unlimited. Switching the stack size from 8192K to unlimited does not change the behaviour. "My" limits: # ulimit -a core file size...
Markus Germeier
mager@...
Jun 28, 2001 8:15 pm
319
Hello, I am trying to test my tcp stack ( it runs as a process ), I use SIGALRM to test timers of tcp. SIGALRM will be sent every 100milli secs. If try my tcp...
Naveen Chandra
naveen@...
Jul 15, 2001 11:11 pm
320
Hello, I wanted to test dmalloc, because there seems to be a memory leak in my application. The application is a C++-Application and uses pthreads. It's...
Dirk Olbertz
olbertz@...
Jul 16, 2001 12:00 pm
321
Hello, I got the log file generated by dmalloc. It gives few non freed memories. But I don't get any source file name. Do I need to enable any options. ...
Naveen Chandra
naveen@...
Jul 17, 2001 4:28 am
322
Hi, this just happened to me on Red Hat Linux 7.0 with dmalloc 4.8.2: (watch the "seen" counts below) 995538879: 1745: Dmalloc version '4.8.2' from...
Gereon Steffens
gereon.steffens@...
Jul 19, 2001 10:45 am
323
I have some patches for ALLOW_ALLOC_ZERO_SIZE to dmalloc_t.c - if you set that to 1 in settings.dist, then dmalloc_t will try 0-sized allocations. However,...
Randell Jesup
rjesup@...
Jul 19, 2001 7:26 pm
324
I've been trying to build dmalloc under FreeBSD with LOCK_THREADS of 1 for use with mozilla (pthreads). In order to get dmalloc_t to work with LOCK_THREADS of...
Randell Jesup
rjesup@...
Jul 19, 2001 7:27 pm
325
... You mentioned threaded. Try adding a -o 4 (or -o 20 for that matter) to make the thread-locking wait for a few allocations before starting. The default...
Randell Jesup
rjesup@...
Jul 19, 2001 7:27 pm
326
... You mentioned threaded. Try adding a -o 4 (or -o 20 for that matter) to make the thread-locking wait for a few allocations before starting. The default...
Randell Jesup
rjesup@...
Jul 19, 2001 7:38 pm
327
I have some patches for ALLOW_ALLOC_ZERO_SIZE to dmalloc_t.c - if you set that to 1 in settings.dist, then dmalloc_t will try 0-sized allocations. However,...