summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
...
* Add a missing word.tjr2003-01-151-1/+1
|
* Document the named semaphore functions. This could still use a bittjr2003-01-151-18/+165
| | | | of polishing.
* Actually add mac_prepare.3.chris2003-01-151-0/+85
| | | | Sponsored by: DARPA, Network Associates Laboratories
* Cross-reference mac(4)chris2003-01-155-0/+5
| | | | Sponsored by: DARPA, Network Associates Laboratories
* s/SEE_ALSO/SEE ALSO/chris2003-01-152-2/+5
| | | | | | Cross-reference mac(4) and mac(9) Sponsored by: DARPA, Network Associates Laboratories
* o Document mac_prepare() and associated functionschris2003-01-158-33/+61
| | | | | | | | | | o Link mac_get_pid.3 to mac_get.3 o Update SEE ALSO to refer to mac_prepare, and added missing references o Remove clause #3 on my work o Update mac_get.3 for the updated MAC API Sponsored by: DARPA, Network Associates Laboratories Obtained from: TrustedBSD Project
* o Remove clause #3chris2003-01-141-5/+9
| | | | | | o Document mac_set_link(). Sponsored by: DARPA, Network Associates Labs
* Back out previous; sharing semaphores between processes only workstjr2003-01-141-8/+16
| | | | in certain special cases.
* Sharing semaphores between processes works now, so remove the stale commentstjr2003-01-141-16/+8
| | | | | about it always returning EPERM. Document that ENFILE occurs when the limit on kernel semaphores is reached.
* Cross reference sem(4) so users know which kernel options are requiredtjr2003-01-145-5/+10
| | | | to use these semaphore functions.
* Add the newly created semaphore to the named semaphore list in sem_open()tjr2003-01-142-2/+4
| | | | | | so that multiple opens of the same semaphore without an intervening sem_close() return the same object, and so that sem_close() does not segfault while trying to remove the item from the list.
* Including <time.h> before <aio.h> has not been necessary for a while now.tjr2003-01-141-1/+0
|
* Mention the oddities and requirements for mount operations executed byjoerg2003-01-131-3/+16
| | | | | | | | non-root users. PR: docs/42651 Submitted by: Thomas Seck <tmseck@netcologne.de> MFC after: 3 days
* Refer to 1003.1 instead of 1003.2 in the Standards section.tjr2003-01-136-6/+6
|
* Lock the stream before calling __sfileno() to retrieve the file descriptor.tjr2003-01-131-2/+10
| | | | 1003.1-2001 requires that fileno() behave as if it locks the stream.
* Add missing word to "Return Values" section.tjr2003-01-131-0/+1
|
* Fix struct iovec documentation to match reality.mike2003-01-122-2/+2
| | | | Submitted by: Craig Rodrigues <rodrigc@attbi.com>
* Add a manual page for the lio_listio() syscall. Still needs a bittjr2003-01-122-1/+177
| | | | of polishing.
* Implement missing fpgetround() and fpsetround().marcel2003-01-113-2/+84
|
* The macro versions of putc() and putchar() are gone.tjr2003-01-101-9/+3
|
* There is no macro version of getc() anymore.tjr2003-01-101-2/+1
|
* Bring the list of function-like macros up to date with reality.tjr2003-01-101-28/+20
|
* spell multiple correctly.alfred2003-01-101-1/+1
|
* Document clearerr_unlocked(), feof_unlocked(), ferror_unlocked()tjr2003-01-102-3/+38
| | | | and fileno_unlocked().
* Add a manual page for flockfile(), ftrylockfile(), and funlockfile().tjr2003-01-102-1/+106
|
* Document getc_unlocked(), getchar_unlocked(), putc_unlocked(),tjr2003-01-103-6/+68
| | | | and putchar_unlocked().
* Add function versions of getchar_unlocked(), getc_unlocked(),tjr2003-01-102-1/+96
| | | | | | putchar_unlocked(), putc_unlocked(), feof_unlocked(), ferror_unlocked(), clearerr_unlocked(), and fileno_unlocked(). The first four are required by POSIX. The rest are provided for consistency.
* Avoid a memory leak by using reallocf() instead of realloc().tjr2003-01-101-1/+1
|
* Prototype __getcwd() to avoid a warning.tjr2003-01-101-0/+2
|
* #include <ctype.h> for prototypes (or macro versions) oftjr2003-01-101-0/+1
| | | | tolower() and isdigit().
* #include "namespace.h" to get a prototype for _err().tjr2003-01-071-0/+2
|
* Remove an unused variable: mbresult.tjr2003-01-071-1/+0
|
* #include <stdlib.h> for free()'s prototype.tjr2003-01-071-0/+1
|
* Use hidden names (_close, _dup2, _waitpid, etc.) where appropriate.tjr2003-01-071-22/+22
|
* Add waitpid to the list of hidden names for use by wordexp.c and grantpt.c.tjr2003-01-072-2/+2
|
* Typo fixes.keramida2003-01-072-2/+2
| | | | | PR: docs/46815 Submitted by: SUZUKI Koichi <koich@cac.co.jp>
* Remove redundant documenation.trhodes2003-01-061-14/+1
| | | | | PR: 46253 Submitted by: Jeroen Ruigrok van der Werven <asmodai@wxs.nl>
* strfmon(3) does not correctly handle multibyte characters in thetjr2003-01-061-0/+6
| | | | format string.
* Note that the printf(3) and scanf(3) family of functions don't deal withtjr2003-01-062-2/+14
| | | | multibyte characters in the format string correctly.
* Rewrite longjmp() and _longjmp() to directly restore the saved frame,tmm2003-01-052-55/+19
| | | | | | | | | instead of unwinding the call stack. This makes them usable to switch stacks, e.g. for libc_r. Do not save the frame pointer in setjmp() and _setjmp(), it is not needed any more. Rename _longjmp() to ___longjmp(), with a weak alias to _longjmp(), like the other architectures did.
* Rename siglongjmp() to __siglongjmp(), with a weak alias to siglongjmp(),tmm2003-01-051-2/+4
| | | | like the other architectures do.
* Use in_addr_t for the right size of an IPv4 address, and copy intofenner2003-01-051-1/+3
| | | | | | | an unaligned destination using bcopy instead of an assignment. Submitted by: Hartmut Brandt <brandt@fokus.gmd.de> PR: sparc64/46729
* No need to include <assert.h> here.tjr2003-01-054-4/+0
|
* strptime(), like strftime(), does not handle multibyte characterstjr2003-01-041-1/+7
| | | | in the format string correctly.
* Mention in the BUGS section that strftime() does not handle multibytetjr2003-01-041-1/+7
| | | | characters in the format string correctly.
* Fix three warnings:tjr2003-01-041-2/+2
| | | | | | o #include <stdio.h> to make sprintf()'s prototype visible. o Remove unused variable: sbuf. o Don't use assignment as truth value.
* style(9): return type on separate line from function name.tjr2003-01-042-2/+4
|
* Fix a number of bugs noticed by more extensive testing:tjr2003-01-041-7/+15
| | | | | | | | | | o Call waitpid() if an error occurs after forking the child process to avoid leaving zombies around. o Handle the WRDE_DOOFS|WRDE_APPEND combination correctly o Do not confuse $( substitution with $(( shell arithmetic (noticed by wollman) o Handle backslash escaping properly o Allow $( and ${ to be quoted
* Rename UL_GETSIZE to UL_GETFSIZE and UL_SETSIZE to UL_SETFSIZE; these aretjr2003-01-042-6/+6
| | | | | the names required by 1003.1-2001. The old names are retained for source compatibility with FreeBSD 5.0 and will be removed before 6.0.
* Remove unused variable: sz.tjr2003-01-041-2/+0
|
OpenPOWER on IntegriCloud