Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-01-21 20:42:08 +0300
committerChristopher Faylor <me@cgf.cx>2002-01-21 20:42:08 +0300
commit8ef47135dded8a99e40bb2d7c1a829964dc08ebd (patch)
treeb724f36d7b231c25f5a2676d516547d53cf2a740 /winsup/cygwin
parent3ba05c0f9291485b112c60d4419aa68b476a6853 (diff)
* speclib: Don't use /dev/null as DLL name. Just default to what's already in
.def file. * exceptions.cc (sig_handle): Remove last vestiges of SA_NOCLDSTOP code which caused SIGCHLD to be ignored.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog10
-rw-r--r--winsup/cygwin/exceptions.cc3
-rwxr-xr-xwinsup/cygwin/speclib2
3 files changed, 11 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 46702572e..149ebbc92 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,13 @@
+2002-01-21 Christopher Faylor <cgf@redhat.com>
+
+ * speclib: Don't use /dev/null as DLL name. Just default to what's
+ already in .def file.
+
+2002-01-21 Christopher Faylor <cgf@redhat.com>
+
+ * exceptions.cc (sig_handle): Remove last vestiges of SA_NOCLDSTOP code
+ which caused SIGCHLD to be ignored.
+
2002-01-20 Christopher Faylor <cgf@redhat.com>
* include/cygwin/version.h: Bump DLL minor number.
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index 818b78aca..cf7aaa5e6 100644
--- a/winsup/cygwin/exceptions.cc
+++ b/winsup/cygwin/exceptions.cc
@@ -1034,9 +1034,6 @@ sig_handle (int sig, bool thisproc)
if (handler == (void *) SIG_ERR)
goto exit_sig;
- if (sig == SIGCHLD)
- goto done;
-
goto dosig;
stop:
diff --git a/winsup/cygwin/speclib b/winsup/cygwin/speclib
index ac7cc28fa..40472045b 100755
--- a/winsup/cygwin/speclib
+++ b/winsup/cygwin/speclib
@@ -19,4 +19,4 @@ def=$1; shift
trap "rm /tmp/$$.def" 0 1 2 15
(echo "LIBRARY cygwin1.dll
EXPORTS"; $nm --extern-only --defined-only $* | sed -e '/^[ ]*$/d' -e '/:$/d' -e 's/^.* _\(.*\)/\1/' | grep $v -f - -w $def |egrep -vi '^library|exports|^$' | sort) > /tmp/$$.def
-exec $dlltool -d /tmp/$$.def -l "$lib" -D /dev/null
+exec $dlltool -d /tmp/$$.def -l "$lib"