X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Date: Tue, 7 Oct 2008 19:29:49 -0400 From: Christopher Faylor To: cygwin AT cygwin DOT com Subject: Re: Memory leak with timer Message-ID: <20081007232949.GA13962@ednor.casa.cgf.cx> Reply-To: cygwin AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com References: <48EBDDF4 DOT 20503 AT xs4all DOT nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <48EBDDF4.20503@xs4all.nl> User-Agent: Mutt/1.5.16 (2007-06-09) Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com On Wed, Oct 08, 2008 at 12:08:52AM +0200, Bob van Loosen wrote: > Hi all, > > When using a timer I seem to be getting a memory leak. > It eats up about 8 kilobyte per second. > > Here's some example code: > > #include > #include > #include > #include > #include > > void nothing(){} > void Die(char *error){perror(error); exit(1);} > > int main() > { > struct itimerspec itimer; > struct sigevent sigev; > timer_t timer; > int interval = 16000; > itimer.it_interval.tv_sec = interval / 1000000; > itimer.it_interval.tv_nsec = (interval % 1000000) * 1000; > itimer.it_value.tv_sec = interval / 1000000; > itimer.it_value.tv_nsec = (interval % 1000000) * 1000; > sigev.sigev_notify = SIGEV_THREAD; > sigev.sigev_notify_attributes = 0; > sigev.sigev_notify_function = ¬hing; > if (timer_create (CLOCK_REALTIME, &sigev, &timer) < 0) > Die("timer_create"); > > if (timer_settime(timer, 0, &itimer, NULL) < 0) > Die("timer_settime"); while(1) sleep(1); > } This should be fixed in the next snapshot. If you are looking for a workaround, specifically set the sigev_notify_attributes to PTHREAD_CREATE_DETACHED. cgf -- 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/