[Rd] Sighandlers

2012-11-18 Thread Ulrich Staudinger
Cleaning up\n"); } When I exit R, my signal handler is not being called. Am I listening to the right signals? Do I have some misunderstanding on my side? Funny side story, if I manually raise(SIGINT), my handlers gets called. Thanks for some light on this, Ulrich -- Ulrich Staudinger

Re: [Rd] Sighandlers

2012-11-26 Thread Ulrich Staudinger
t notified about R's termination, so that the afore mentioned buffering process may terminate gracefuly, too. I solved it by using pthreads rather than fork(), as the pthread is attached to a parent process and will terminate with it. > > On 17/11/2012 15:56, Ulrich Staudinger wrote: