Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm 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 Message-ID: <005601c3c1b3$21850ba0$ed01a8c0@jewel> From: "Robby Dermody" To: Subject: System calls getting interrupted with signals, even with SA_RESTART Date: Sat, 13 Dec 2003 14:55:52 -0500 Organization: phase9 industries, inc. MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Hey guys, I've ran into a little problem. I have been porting an piece of software to Cygwin. It builds and initially runs fine, but when I get a SIGALRM signal, which I use for asynchronous timers, a few things return with an EINTR: -select() -IPC semaphores (using CygIPC) Note that I am asserting SA_RESTART when I set up the signal handler. The procedure I take is this: ----------------- struct sigaction SigAction; memset(&SigAction, 0, sizeof(struct sigaction)); SigAction.sa_handler = Internal_Act_HandleTimers; SigAction.sa_flags = SA_RESTART; //restart system calls interrupted with this signal if(sigaction(SIGALRM, &SigAction, NULL) < 0) { leprintf(LOGGING_SELF, LVL_SYSERR, "Error initing SIGALRM handler"); return false; } siginterrupt(SIGALRM, false); ---------------- The error returned from select is: (errno, strerror(errno) errno - 4 (Interrupted system call) (obviously ENTR) Obviously the signal handler is set up correctly, and when just asserting SA_RESTART didn't work, I tried sticking a call to siginterrupt in there as well, but had no luck there either. Is it just a stupid mistake on my end, or something I'm failing to see? The only other thing that might be the case is that the restarting of select and the semaphore stuff isn't implemented? TIA for ANY help!! Robby --- Robby Dermody (robbyd AT p9i DOT com) phase9 industries, inc. - http://www.p9i.com/ We confide in our strength, without boasting of it; we respect that of others, without fearing it. -Thomas Jefferson -- 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/