]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
sigset_t change (part 5 of 5)
authorMarcel Moolenaar <marcel@FreeBSD.org>
Wed, 29 Sep 1999 15:18:46 +0000 (15:18 +0000)
committerMarcel Moolenaar <marcel@FreeBSD.org>
Wed, 29 Sep 1999 15:18:46 +0000 (15:18 +0000)
commit3cf3c5d9ddb2edd1033c0b8e612096b8b35b3bb4
treef20b5cb25cf94c494095050b1f52676e7efd71f7
parent956d3333cadea27513348a7718e9cfd5c26e9ba0
sigset_t change (part 5 of 5)
-----------------------------

Most of the userland changes are in libc. For both the alpha
and the i386 setjmp has been changed to accomodate for the
new sigset_t. Internally, libc is mostly rewritten to use the
new syscalls. The exception is in compat-43/sigcompat.c

The POSIX thread library has also been rewritten to use the
new sigset_t. Except, that it currently only handles NSIG
signals instead of the maximum _SIG_MAXSIG. This should not
be a problem because current applications don't use any
signals higher than NSIG.

There are version bumps for the following libraries:
  libdialog
  libreadline
  libc
  libc_r
  libedit
  libftpio
  libss

These libraries either a) have one of the modified structures
visible in the interface, or b) use sigset_t internally and
may cause breakage if new binaries are used against libraries
that don't have the sigset_t change. This not an immediate
issue, but will be as soon as applications start using the
new range to its fullest.

NOTE: libncurses already had an version bump and has not been
      given one now.

NOTE: doscmd is a real casualty and has been disconnected for
      the moment. Reconnection will eventually happen after
      doscmd has been fixed. I'm aware that being the last one
      to touch it, I'm automaticly promoted to being maintainer.
      According to good taste this means that I will receive a
      badge which either will be glued or mechanically stapled,
      drilled or otherwise violently forced onto me :-)

NOTE: pcvt/vttest cannot be compiled with -traditional. The
      change cause sys/types to be included along the way which
      contains the const and volatile modifiers. I don't consider
      this a solution, but more a workaround.
46 files changed:
gnu/lib/libdialog/Makefile
gnu/lib/libreadline/Makefile.inc
include/signal.h
include/ucontext.h [new file with mode: 0644]
lib/libc/Makefile
lib/libc/alpha/gen/setjmp.S
lib/libc/amd64/gen/_setjmp.S
lib/libc/amd64/gen/setjmp.S
lib/libc/amd64/gen/sigsetjmp.S
lib/libc/amd64/sys/Makefile.inc
lib/libc/compat-43/sigcompat.c
lib/libc/gen/sigsetops.c
lib/libc/i386/gen/_setjmp.S
lib/libc/i386/gen/setjmp.S
lib/libc/i386/gen/sigsetjmp.S
lib/libc/i386/sys/Makefile.inc
lib/libc_r/uthread/pthread_private.h
lib/libc_r/uthread/uthread_fork.c
lib/libc_r/uthread/uthread_info.c
lib/libc_r/uthread/uthread_kern.c
lib/libc_r/uthread/uthread_sig.c
lib/libc_r/uthread/uthread_sigmask.c
lib/libc_r/uthread/uthread_sigprocmask.c
lib/libc_r/uthread/uthread_sigwait.c
lib/libedit/Makefile
lib/libftpio/Makefile
lib/libkse/thread/thr_fork.c
lib/libkse/thread/thr_info.c
lib/libkse/thread/thr_kern.c
lib/libkse/thread/thr_private.h
lib/libkse/thread/thr_sig.c
lib/libkse/thread/thr_sigmask.c
lib/libkse/thread/thr_sigprocmask.c
lib/libkse/thread/thr_sigwait.c
lib/libpthread/thread/thr_fork.c
lib/libpthread/thread/thr_info.c
lib/libpthread/thread/thr_kern.c
lib/libpthread/thread/thr_private.h
lib/libpthread/thread/thr_sig.c
lib/libpthread/thread/thr_sigmask.c
lib/libpthread/thread/thr_sigprocmask.c
lib/libpthread/thread/thr_sigwait.c
lib/libss/Makefile
usr.bin/Makefile
usr.sbin/pcvt/vttest/Makefile
usr.sbin/rpc.statd/statd.c