Re: [R] Need mtrace (malloc debugging) help

2007-04-04 Thread Prof Brian Ripley
On Wed, 4 Apr 2007, $|-|@r@|) wrote: > Hi all, > > I am using "mtrace" malloc debugging utility to trace memory leaks in my > application. > > I followed following steps: > > 1. Added mtrace() function in the beginning of my main function. > 2. exported the MALLOC_TRACE environment variable. >

[R] Need mtrace (malloc debugging) help

2007-04-04 Thread $|-|@r@|)
Hi all, I am using "mtrace" malloc debugging utility to trace memory leaks in my application. I followed following steps: 1. Added mtrace() function in the beginning of my main function. 2. exported the MALLOC_TRACE environment variable. $ export MALLOC_TRACE=memory.log 3. Run the program 4.