Hello mailing list, I noticed that synchronous signals (e.g., SIGSEGV, SIGFPE) appear to be broken on 64-bit Cygwin systems. I could not find additional information on the mailing list. If this is not already a known problem, you'll find some analysis below. I use Cygwin DLL 2.10 with all packages up-to-date. My test system runs Windows 7. The expected behavior is that an installed signal handler runs exactly once for a signal and the OS terminates the program if the handler returns. This works on 32-bit Cygwin. From my observation, Cygwin 64 differs in the follow ways: 1) Generating a synchronous signal on the main thread, makes the signal handler enter an endless loop. The attached test 'syncsig.c' illustrates this. 2) Generating a synchronous signal on an additional POSIX thread ignores the installed signal handler entirely. The handler does not run and the program gets terminated immediately. The attached test 'syncsig_mt.c' illustrates this. As mentioned, both cases work correctly on 32-bit installations. I cannot point to the exact location of the problem, but it appears that the Cygwin exception-handler code is not set up by 64-bit code. In case 2) I can see the Windows function KiUserExceptionDispatcher() being executed for the synchronous signal on the affected thread. This should lead to a call to the Cygwin exception handler. It does for 32-bit, but not for 64-bit code. From what I've seen, the exception handler is installed in the c'tor exception::exception(). [exception.cc:138] The only invocation I found was in SetThreadName(). [miscfuncs.cc:951] This set-up code is 32-bit-only. BTW, is there a bug tracker for Cygwin? I'd open a bug report there, or add the information to an existing one. Best regards Thomas [exception.cc:138] https://cygwin.com/git/gitweb.cgi?p=newlib-cygwin.git;a=blob;f=winsup/cygwin/exception.h;h=ffff7464ba11b5526fcf9d13e32334912a30a3b0;hb=4c73ad6b20378e4b74355fcdb2005f2aac489c9f#l138 [miscfuncs.cc:951] https://cygwin.com/git/gitweb.cgi?p=newlib-cygwin.git;a=blob;f=winsup/cygwin/miscfuncs.cc;h=3ad658739ad9e85868ca74ce2e86aa6ddbdbfb37;hb=4c73ad6b20378e4b74355fcdb2005f2aac489c9f#l951 -- Implement thread-safe and fault-tolerant software in C: visit picotm.org -- GnuPG: http://tdz.users.sourceforge.net/tdz.asc Fingerprint: 16FF F599 82F8 E5AA 18C6 5220 D9DA D7D4 4EF1 DF08 Website: transactionblog.org