summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdio/local.h
Commit message (Collapse)AuthorAgeFilesLines
* (cantwrite): do not allocate memory for a NULL stringassar2001-06-181-1/+2
| | | | | | | | PR: misc/26044 MFC after: 1 week Submitted by: bde
* Properly initialize a temporary FILE that is allocated off the stack.deischen2001-06-041-0/+7
| | | | | | | The change to reuse _up from FILE (to allow FILE to grow without changing size) overlooked FILE being allocated off the stack. Approved by: sobomax
* Hide the definition of struct __sFILEX and add the neededdeischen2001-03-011-0/+10
| | | | | | | lock definitions to it. flockfile state is now allocated along with the rest of FILE. This eliminates the need for a separate allocation of flockfile state as well as eliminating the mutex/lock used to serialize its allocation.
* Remove _THREAD_SAFE and make libc thread-safe by default bydeischen2001-01-241-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Import CSRG 4.4BSD-Lite2 lib/libc onto vendor branchpeter1997-03-111-17/+17
|
* BSD 4.4 Lite Lib Sourcesrgrimes1994-05-271-0/+87
OpenPOWER on IntegriCloud