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,...
Randell Jesup
rjesup@...
Jul 19, 2001 7:39 pm
328
Hi all, Does anyone know what this error message means or where in the documentation this error is described? I can't seem to find it... Thanks! The error is:...
rwan@...
Jul 26, 2001 1:07 pm
329
... Hrmm. Don't see this too often. I believe it indicates that you have a loose pointer which overwrote a dmalloc administrative field. If you turn on the...
Gray Watson
gray.eg@...
Jul 26, 2001 1:31 pm
330
Hi, I just wanted to share my experience with getting threaded dmalloc working on AIX 4.3.3. My major breakthrough came with using the xlC_r7 compiler to ...
Warwick Burrows
wburrows@...
Aug 3, 2001 10:42 pm
332
I modified dmalloc 4.8.2 to get USE_DMALLOC_LEAP working, is anyone inetersted in my changes?...
arm000@...
Aug 22, 2001 7:38 pm
333
Hi, I'm using dmalloc 4.8.2 in Redhat Linux 7.1 and it's reporting that certain memory in my threaded C program is not being freed when I'm 99.99999% positive...
Daniel Ceregatti
shemp@...
Aug 29, 2001 10:21 pm
334
I stumbled across this while searching for the cause of my dmallc error at exit. Maybe you know about it, maybe you don't, but it's a good thing to know if you...
Daniel Ceregatti
shemp@...
Aug 30, 2001 12:36 am
335
... This is the "free(NULL) is guaranteed safe" issue. free(NULL) has always been documented as safe in standard c libraries. Dmalloc _defaults_ to...
Randell Jesup
rjesup@...
Aug 30, 2001 8:59 pm
337
Hi, Has anyone ported dmalloc to vxworks ? We are having some trouble doing so, and would like some help thanks Siddharth...
sram@...
Oct 1, 2001 9:11 pm
338
... I started too... but I never finished because I got pulled onto another project. What kind of problems are you having? Amanda ...
Amanda Tolin
amanda.tolin@...
Oct 2, 2001 1:30 pm
340
G'day all, I'm using dmalloc on FreeBSD with threading enabled, and am having problems with recursion when dmalloc attempts to open the log file. It seems that...
... you need a "lockon" of circa 4. Basically, allow the first few allocations (of thread structures) to go through without checking. I do this with Mozilla...
Randell Jesup
rjesup@...
Oct 23, 2001 11:15 pm
342
I don't know whether this is a problem with dmalloc, or just something I'm doing wrong in my code. ... #include <stdio.h> #include <strstream.h> #ifdef DMALLOC...
Yes, I know "delete(0)" is supposed to be a noop. What does this have to do with GNU? And what pointer exactly is NULL? I tried doing something odd like...
HPUX 11.0, dmalloc 4.8.2 with the cxx_dmalloc-4.8.2.diff patch applied. There's a comment in conf.h that says: * NOTE: the value will never be auto-configured...