summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* Add ERRORS section.asmodai2001-09-261-1/+18
| | | | | | | | Mention thread safety and async-cancel safety status [not]. Add standards compliancy references. Note strtol() is preferred over atoi(). MFC after: 2 weeks
* Be explicit about the POSIX version it conforms to [in this case 1990].asmodai2001-09-261-5/+5
| | | | Put the error comment under the more appropriate ERRORS section.
* Change standards compliancy order so that C and POSIX are grouped.asmodai2001-09-261-1/+1
|
* - Correct capitalization of a function name.murray2001-09-241-2/+3
| | | | | | | | - Add a missing word to form a complete sentence. PR: docs/30626 Submitted by: Dan Lukes <dan@obluda.cz>, and swear@blarg.net (Gary W. Swearingen)
* Note that strdup(3) will set errno if memory allocation fails. Thismike2001-09-231-1/+4
| | | | | | is also required by the forthcoming POSIX.1-200x standard. Obtained from: malloc.3
* Fix a whole bunch of dependancy bugs and make it actually work when thedfr2001-09-221-7/+10
| | | | size is not a multiple of eight.
* Fix byte swapping - it was totally broken.dfr2001-09-222-5/+6
|
* o Modify access(2) man page to describe eaccess(2), and add a symlinkrwatson2001-09-212-4/+20
| | | | | | so man eaccess will return the access(2) man page. Obtained from: TrustedBSD Project
* Document the FTS_ROOTPARENTLEVEL and FTS_ROOTLEVEL constants.ru2001-09-201-5/+9
|
* First appeared in 5.0, not in 4.4ache2001-09-171-1/+1
|
* style(9)mike2001-09-171-62/+56
| | | | Silence from: phantom
* Typo: s/conatains/contains/guido2001-09-121-1/+1
| | | | MFC after: 1 week
* mdoc(7) police: changed pure POSIX text; added missing markup bits.ru2001-09-112-8/+12
|
* mdoc(7) police: removed commas from the standard (split) AUTHORS block.ru2001-09-111-3/+3
|
* Add more standards which we conform to.asmodai2001-09-091-1/+18
| | | | | | Note our implementation is not thread nor async-cancel safe. Explicitely note atof() does not check nor report errors. Note that strtod() should be used instead.
* Detail thread-safe and async-cancel-safe status.asmodai2001-09-091-0/+10
| | | | | | Also add C99 conformity status plus clarification that C99 leaves the flushing of unwritten data, closure of open streams, and removal of temporary files to the implementation.
* 1) If __SAPP stream is not seekable, remove __SAPP flag on first call insteadache2001-09-071-3/+10
| | | | | | | | | of repeating unsuccessful lseek call on each write (original stdio bug). 2) Save errno accross _sseek call in _swrite to not touch it in case write success (original stdio bug). 3) Add _sseek error checking back, but only for __SOPT mode now.
* Move to using .In instead of .Fd #include <> for include mark-up.asmodai2001-09-0727-39/+39
| | | | Inspired by comment from: dd
* reconnect strfmon.c to build listphantom2001-09-071-1/+1
|
* Fix some mdoc nits caused by my knowledge not being too up-to-date onasmodai2001-09-071-9/+12
| | | | | | mdocNG. Submitted by: dd
* Port to ia64, taking into account the fact that pagesizes may be variable.dfr2001-09-071-0/+11
|
* Add strfmon.3 to the fray.asmodai2001-09-072-1/+89
| | | | | | | | This is a first cut, but enough to help people interested in using it further than before. More text coming to illustrate use and provide more details. Based on standards' text.
* For now just back out seek error checking in __SAPP case, it cause problemsache2001-09-071-2/+2
| | | | | | with non-seekable streams. Now here is what here was originally, but it is ugly, producing unneded seek syscall on each non-seekable stream write. I'll think about proper solution later.
* Fix all the ambiguous or erroneous statements of the brk(2)yar2001-09-061-55/+87
| | | | | | | | manpage by taking its text from NetBSD and editing it further. This also improves the page's mdoc(7) markup style. Reviewed by: ru Obtained from: NetBSD
* correctly wrap macros with { }phantom2001-09-061-2/+3
|
* strfmon(3) is not ready to go live.obrien2001-09-061-1/+1
|
* Add strfmon(3) implementation. It still contains few XXX's because I lostphantom2001-09-052-3/+618
| | | | | | | | | my last version of this work due to HDD crash, but this version cleanly passed all POSIX and SuSv2 tests. I am working on testing scripts which should test this implementation against all locales and surely more fixes will come soon. Reviewed by: ache, silence at -audit & -developers
* mdoc(7) police: markup and minor content fixes.ru2001-09-052-73/+61
| | | | | | | | | | | | o Removed whitespace at EOL o Removed hard sentence breaks o Added cap_size() to the NAME section o Normalized .Nd descriptions o Fixed the abuses of .Nm and .Va o Fixed some DESCRIPTION texts o Fixed the RETURN VALUES and ERRORS texts to look more traditional Reviewed by: tmm
* Add Thomas Moestl and Chris Faulhaber to the author list for POSIX.1erwatson2001-09-051-0/+2
| | | | | | support. Obtained from: TrustedBSD Project
* Portability fix: use unsigned cast to guaranteed positive part of expressionache2001-09-042-2/+2
| | | | | in case {L}LONG_MAX > abs({L}LONG_MIN). Non-functional change - we don't have any such platforms.
* Remove rcsids and unneded includeache2001-09-046-34/+12
|
* 'acc' is not initialized in one hypotetical case, fix itache2001-09-044-8/+8
|
* Locale *is* used in strto*l*(), at least for isspace(), so removeache2001-09-048-58/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'locale not used' statement from comments and BUGS section of manpage. strtol(): fix non-portable 'cutoff' calculation using the same method as in strtoll(). Cleanup 'cutoff' calculation, remove unneded casts. Misc. cleanup to make all functions looks the same. Implement EINVAL reaction per POSIX, document it in manpage, corresponding POSIX example quotes here: ------------------------------------------------ If the subject sequence is empty or does not have the expected form, no conversion is performed; the value of str is stored in the object pointed to by endptr, provided that endptr is not a null pointer. If no conversion could be performed, 0 shall be returned and errno may be set to [EINVAL]. [EINVAL] The value of base is not supported. Since 0, {LONG_MIN} or {LLONG_MIN}, and {LONG_MAX} or {LLONG_MAX} are returned on error and are also valid returns on success, an application wishing to check for error situations should set errno to 0, then call strtol( ) or strtoll ( ), then check errno. -----------------------------------------------------
* Implement _setjmp()/_longjmp().dfr2001-09-041-125/+345
| | | | Obtained from: Intel's EFI toolkit
* This does not describe sched_{get,set}scheduler.dd2001-09-031-2/+3
| | | | | PR: 26001 Submitted by: OHSAWA Chitoshi <ohsawa@catv1.ccn-net.ne.jp>
* Don't capitalize jail(2) in the middle of a sentence.dd2001-09-031-1/+1
| | | | | PR: 25876 Submitted by: Koizumi Satoru <koizumi@cms.phys.s.u-tokyo.ac.jp>
* PT_STEP in ptrace(2) man page is described as 'addr and data fieldsmurray2001-09-031-3/+3
| | | | | | | | | are not used'. This is incorrect, as addr must be passed (caddr_t)1 to do anything useful. The source for gdb and a short test program will confirm that this man page was in error. PR: docs/27758 Submitted by: Jiangyi Liu <jyliu@163.net>
* When __SOPT is cleared, clear __SOFF too.ache2001-09-031-1/+1
| | | | NOTE: original stdio bug.
* Re-arrange my funopen(3) fix to minimize differences with original stdio code,ache2001-09-036-83/+91
| | | | | | no functional changes. Add fp->_offset optimization in _SAPP+_SOPT case
* o Sync up prototypes for cap_size() and cap_copy_ext() withrwatson2001-09-021-2/+2
| | | | | | | | sys/capability.h--this compiled fine on i386 where (int) and (ssize_t) are the same, but broke on Alpha where they differ. Submitted by: Mike Barcroft <mike@FreeBSD.org> Obtained from: TrustedBSD Project
* Internal seeks are overoptimized. They should remember fp->_offset only forache2001-09-022-3/+1
| | | | | | | plain regular files, i.e. files with __SOPT flag set. Fix it, so ftell(stdout) always returns the same as lseek(1, 0, 1) now. NOTE: this bug was in original stdio code
* Fix bug in off_t overflow checking: if fp->_offset overflows, just removeache2001-09-021-5/+3
| | | | | __SOFF flag (i.e. we don't have offset) instead of returning EOVERFLOW. It allows again continious reading from non-stop stream.
* Remove MLINKS seek.2 to lseek.2, we don't have seek.2 syscallache2001-09-021-1/+0
|
* Typo seek(2) -> lseek(2)ache2001-09-021-1/+1
|
* Move all stdio internal flags processing and setting out of __sread(),ache2001-09-029-55/+89
| | | | | | | | | | __swrite() and __sseek() to higher level. According to funopen(3) they all are just wrappers to something like standard read(2), write(2) and lseek(2), i.e. must not touch stdio internals because they are replaceable with any other functions knows nothing about stdio internals. See example of funopen(3) usage in sendmail sources f.e. NOTE: this is original stdio bug, not result of my range checkin added.
* Another punctuation fix (missing comma ending preposition).chris2001-09-011-1/+1
|
* o Mention the fact that specifying a fileid of 0 searches all loadedchris2001-09-011-1/+4
| | | | | modules. o Properly terminate a preposition.
* Save errno before function call and restore it on success (because manyache2001-09-012-2/+11
| | | | | | internal functions there may fail and set (i.e. overwrite) errno in normal (not error) situation). In original variant errno testing after call (as POSIX suggest) is wrong when errno overwrite happens.
* Remove even more unneded checks, original code can't overflows in that placeache2001-09-011-5/+1
|
* Remove two checks unneeded now (can't happens)ache2001-09-011-4/+0
|
OpenPOWER on IntegriCloud