diff options
author | Mark Kettenis <kettenis@gnu.org> | 2001-08-27 22:39:56 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2001-08-27 22:39:56 +0000 |
commit | 46711df821e6955e5fdc91e2d939356e048aa64b (patch) | |
tree | 040cef5218b39e3d2d1532bcec3cae0abf501c9b /gdb/ChangeLog | |
parent | 8a423cb3d62534f6663b66ae42045fd984d36d63 (diff) | |
download | gdb-46711df821e6955e5fdc91e2d939356e048aa64b.zip gdb-46711df821e6955e5fdc91e2d939356e048aa64b.tar.gz gdb-46711df821e6955e5fdc91e2d939356e048aa64b.tar.bz2 |
* event-top.c (async_stop_sig) [HAVE_SIGPROCMASK]: Some
gratuitious whitespace changes.
[!HAVE_SIGPROCMASK]: Call sigsetmask if HAVE_SIGSETMASK is defined.
* top.c: Remove redundant logic to define HAVE_SIGSETMASK.
(sigsetmask) Don't define macro.
(stop_sig) [HAVE_SIGPROCMASK]: Add bit of code snatched from
async_stop_sig from event-top.c.
[!HAVE_SIGPROCMASK]: Call sigsetmask if HAVE_SIGSETMASK is
defined.
* configure.in (AC_CHECK_FUNCS): Put functions in alphabetical
order. Add sigsetmask.
(AC_FUNC_VFORK, AC_FUNC_ALLOCA): Reorder such that they're in
alphabetical order.
* config/xm-aix4.h, config/alpha/xm-alphalinux.h,
config/i386/xm-cygwin.h, config/rs6000/xm-rs6000.h
(HAVE_SIGSETMASK): Remove.
* aclocal.m4, config.in, configure
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b30b92e..5b66115 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,23 @@ +2001-08-23 Mark Kettenis <kettenis@gnu.org> + + * event-top.c (async_stop_sig) [HAVE_SIGPROCMASK]: Some + gratuitious whitespace changes. + [!HAVE_SIGPROCMASK]: Call sigsetmask if HAVE_SIGSETMASK is defined. + * top.c: Remove redundant logic to define HAVE_SIGSETMASK. + (sigsetmask) Don't define macro. + (stop_sig) [HAVE_SIGPROCMASK]: Add bit of code snatched from + async_stop_sig from event-top.c. + [!HAVE_SIGPROCMASK]: Call sigsetmask if HAVE_SIGSETMASK is + defined. + * configure.in (AC_CHECK_FUNCS): Put functions in alphabetical + order. Add sigsetmask. + (AC_FUNC_VFORK, AC_FUNC_ALLOCA): Reorder such that they're in + alphabetical order. + * config/xm-aix4.h, config/alpha/xm-alphalinux.h, + config/i386/xm-cygwin.h, config/rs6000/xm-rs6000.h + (HAVE_SIGSETMASK): Remove. + * aclocal.m4, config.in, configure + 2001-08-26 Andrew Cagney <ac131313@redhat.com> From 2001-06-29 Andrew Cagney <ac131313@redhat.com>: |