Date: Tue, 15 Nov 2005 18:00:31 -0500 (EST) From: Igor Pechtchanski Reply-To: cygwin AT cygwin DOT com To: Joe Smith cc: cygwin AT cygwin DOT com Subject: Re: Can I get a sigint when the bash window closed with close window's button? In-Reply-To: Message-ID: References: <896835389 AT web DOT de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk 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 Tue, 15 Nov 2005, Joe Smith wrote: > "Igor Pechtchanski" wrote in message news:Pine DOT GSO DOT 4 DOT 63 DOT 0511151424250 DOT 15491 AT slinky DOT cs DOT nyu DOT edu... . Thanks. > > On Tue, 15 Nov 2005, Konrad Eisele wrote: > > > > > When th cygwin bash window is closed by clicking on the window's > > > close button the the appliaction gets killed without recieving a > > > sigint or any atexit called. Is there a way to be able to run > > > cleanup code when the application is about to be killed? > > > > According to exceptions.cc, a SIGHUP will be sent to bash in this > > case. Are you handling the right signal? > > > > BTW, the atexit() callback also should be called -- do you have a > > simple testcase to reproduce the problem? > > Igor > > I know nothing about signals, but this program when run inside bash does > not seem to run callback() *ever*. > ^c does not run it. Closing the bash window does not run it. But if you > remove the loop then it *is* run. > > #include > void callback() > { > FILE *current; > > current=fopen("test.txt","a"); > fprintf(current,"atexit"); > } > > int main() > { > atexit(*callback); > while(1) > {}; > } IIRC, the atexit callback is not supposed to be invoked from a default signal handler. In fact, Cygwin defines a signal_exit specifically to avoid invoking it. If you change the above to terminate on something other than a signal (e.g., a condition in the loop), your callback will be invoked. Adding a signal handler that calls exit() should also cause the callback to be invoked. Igor -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_ pechtcha AT cs DOT nyu DOT edu ZZZzz /,`.-'`' -. ;-;;,_ igor AT watson DOT ibm DOT com |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D. '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! If there's any real truth it's that the entire multidimensional infinity of the Universe is almost certainly being run by a bunch of maniacs. /DA -- 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/