summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/pselect.c
Commit message (Collapse)AuthorAgeFilesLines
* Add restrict type-qualifier.mike2002-10-121-2/+3
|
* Remove pselect from application namespace and instead use a weak referencedeischen2002-06-271-1/+3
| | | | | | | to the actual implementation. This is to allow libc_r to override pselect() making it a cancellation point. Prompted by: wollman
* Fix SCM ID's.obrien2002-02-011-2/+3
|
* Remove _THREAD_SAFE and make libc thread-safe by default bydeischen2001-01-241-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* I made a last-minute change before the last commit which brokewollman2001-01-231-3/+1
| | | | the errno semantics. Get it (closer to) right this time.
* Add a couple of new library interfaces (will be activated when thewollman2001-01-231-0/+74
relavant header file changes are committed) for POSIX support.
OpenPOWER on IntegriCloud