From: cgf Date: Sat, 29 Nov 2008 02:41:37 +0000 (+0000) Subject: * exceptions.c (sigpacket::process): Set tls on return since it is assumed to X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a6fdbcf4199cfd7a1978128d462247b6a32633cb;p=pf3gnuchains%2Fpf3gnuchains3x.git * exceptions.c (sigpacket::process): Set tls on return since it is assumed to be set to a valid value by the caller. --- diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index f3eed57a1f..f0f12c37d0 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,10 @@ 2008-11-28 Christopher Faylor + * exceptions.c (sigpacket::process): Set tls on return since it is + assumed to be set to a valid value by the caller. + +2008-11-28 Christopher Faylor + * include/cygwin/version.h: Bump api minor number to 189 to flag the implementation of dirent.d_type. diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 5a94a13a4a..950ab86bc6 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -1287,6 +1287,7 @@ dosig: rc = setup_handler (si.si_signo, handler, thissig, use_tls); done: + tls = use_tls; if (continue_now) SetEvent (sigCONT); sigproc_printf ("returning %d", rc);