* 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.
This commit is contained in:
Christopher Faylor 2002-01-21 17:42:08 +00:00
parent 3ba05c0f92
commit 8ef47135dd
3 changed files with 11 additions and 4 deletions

View File

@ -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.

View File

@ -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:

View File

@ -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"