freebsd-dev/lib/libc/compat-43
Daniel Eischen d201fe46e3 Remove _THREAD_SAFE and make libc thread-safe by default by
adding (weak definitions to) stubs for some of the pthread
functions.  If the threads library is linked in, the real
pthread functions will pulled in.

Use the following convention for system calls wrapped by the
threads library:
	__sys_foo - actual system call
	_foo - weak definition to __sys_foo
	foo - weak definition to __sys_foo

Change all libc uses of system calls wrapped by the threads
library from foo to _foo.  In order to define the prototypes
for _foo(), we introduce namespace.h and un-namespace.h
(suggested by bde).  All files that need to reference these
system calls, should include namespace.h before any standard
includes, then include un-namespace.h after the standard
includes and before any local includes.  <db.h> is an exception
and shouldn't be included in between namespace.h and
un-namespace.h  namespace.h will define foo to _foo, and
un-namespace.h will undefine foo.

Try to eliminate some of the recursive calls to MT-safe
functions in libc/stdio in preparation for adding a mutex
to FILE.  We have recursive mutexes, but would like to avoid
using them if possible.

Remove uneeded includes of <errno.h> from a few files.

Add $FreeBSD$ to a few files in order to pass commitprep.

Approved by:	-arch
2001-01-24 13:01:12 +00:00
..
creat.2 Introduce ".Lb" macro to libc manpages. 2000-04-21 09:42:15 +00:00
creat.c Remove _THREAD_SAFE and make libc thread-safe by default by 2001-01-24 13:01:12 +00:00
gethostid.3 Remove fullstops from the end of .Xr lines in SEE ALSO section. 2000-11-15 14:40:14 +00:00
gethostid.c BSD 4.4 Lite Lib Sources 1994-05-27 05:00:24 +00:00
getwd.c General -Wall warning cleanup, part I. 1996-07-12 18:57:58 +00:00
killpg.2 Introduce ".Lb" macro to libc manpages. 2000-04-21 09:42:15 +00:00
killpg.c General -Wall warning cleanup, part I. 1996-07-12 18:57:58 +00:00
Makefile.inc Merge the documentation for sigsetmask() and sigblock() into a 2001-01-17 19:20:58 +00:00
sethostid.c BSD 4.4 Lite Lib Sources 1994-05-27 05:00:24 +00:00
setpgrp.c General -Wall warning cleanup, part I. 1996-07-12 18:57:58 +00:00
setrgid.c BSD 4.4 Lite Lib Sources 1994-05-27 05:00:24 +00:00
setruid.3 Introduce ".Lb" macro to libc manpages. 2000-04-21 09:42:15 +00:00
setruid.c BSD 4.4 Lite Lib Sources 1994-05-27 05:00:24 +00:00
sigcompat.c Remove _THREAD_SAFE and make libc thread-safe by default by 2001-01-24 13:01:12 +00:00
sigpause.2 mdoc(7) police: Er macro usage cleanup. 2000-11-22 16:02:00 +00:00
sigsetmask.2 Merge the documentation for sigsetmask() and sigblock() into a 2001-01-17 19:20:58 +00:00
sigvec.2 Prepare for mdoc(7)NG. 2000-12-29 14:08:20 +00:00