freebsd-dev/lib/libc_r
John Birrell 4a027d50c7 Change signal model to match POSIX (i.e. one set of signal handlers
for the process, not a separate set for each thread). By default, the
process now only has signal handlers installed for SIGVTALRM, SIGINFO
and SIGCHLD. The thread kernel signal handler is installed for other
signals on demand. This means that SIG_IGN and SIG_DFL processing is now
left to the kernel, not the thread kernel.

Change the signal dispatch to no longer use a signal thread, and
call the signal handler using the stack of the thread that has the
signal pending.

Change the atomic lock method to use test-and-set asm code with
a yield if blocked. This introduces separate locks for each type
of object instead of blocking signals to prevent a context
switch. It was this blocking of signals that caused the performance
degradation the people have noted.

This is a *big* change!
1998-04-29 09:59:34 +00:00
..
arch Atomic lock source. 1998-04-29 09:36:03 +00:00
man This function compiles with the standard, so say so. 1998-04-03 09:12:19 +00:00
sys Use libc makefiles from now on instead of duplicating them in libc_r. 1997-05-03 03:57:21 +00:00
uthread Change signal model to match POSIX (i.e. one set of signal handlers 1998-04-29 09:59:34 +00:00
Makefile Finish _POSIX_PRIORITY_SCHEDULING. Needs P1003_1B and 1998-03-28 11:51:01 +00:00