This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Memory leakage?


Dave Korn writes:
> 
> On 10 June 2007 13:00, Edgar Matzinger wrote:
> 
> >   I wonder if there is a memory leakage problem with the current cygwin
> > release. After upgrading to it, and trying to compile Gnome (using
> > garnome), the memory usage keeps increasing. Even after I've stopped
> > the building process, the memory isn't freed up. 
> 
>   How exactly are you measuring the memory usage of a process that no longer
> exists, then?
> 
>     cheers,
>       DaveK

In my case I see it with Windows Task Manager, the PF Usage displays.  Memory 
usage slowly increases over time, seemingly when there is lots of process 
creation going on such as during large makes.  On my systems with paging turned 
off, eventually all memory is consumed and things really go to hell.

I've found an easy testcase.  Remember this bash script?
#! /bin/bash
mypath=$(pwd)
while [[ ! -z $mypath ]]
do
  mypath=$(pwd)
  if [[ -z $mypath ]]
  then
    echo "Test failed.. Path is empty."
  fi
done

I run this for a while and see gradually increasing memory usage.  Even when 
all Cygwin processes are subsequently exited, that memory is not released.  I 
also recoded that script for ash and ksh and the same thing happens, so it's 
not bash's problem.

..mark





--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]