summaryrefslogtreecommitdiff
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* Fix prototypes.Ruslan Ermilov2005-11-233-4/+4
| | | | Notes: svn path=/head/; revision=152720
* There's no longer^Wyet <sys/capability.h>.Ruslan Ermilov2005-11-231-1/+1
| | | | Notes: svn path=/head/; revision=152718
* Fix inet6_opt_get_val() prototype.Ruslan Ermilov2005-11-231-1/+1
| | | | Notes: svn path=/head/; revision=152717
* Make SYNOPSIS compile.Ruslan Ermilov2005-11-231-3/+3
| | | | Notes: svn path=/head/; revision=152716
* Make SYNOPSIS compile after imp@'s changes.Ruslan Ermilov2005-11-232-11/+11
| | | | Notes: svn path=/head/; revision=152715
* Make SYNOPSIS compile.Ruslan Ermilov2005-11-231-1/+1
| | | | Notes: svn path=/head/; revision=152714
* Add missing includes.Ruslan Ermilov2005-11-231-1/+3
| | | | Notes: svn path=/head/; revision=152712
* Do not explicitly state how many bytes an argument list can be in theSimon L. B. Nielsen2005-11-191-1/+0
| | | | | | | | | description of E2BIG, since it's now larger on some platforms. MFC after: 3 days Notes: svn path=/head/; revision=152604
* Document CLOCK_UPTIME which returns the current uptime in SI seconds.Andre Oppermann2005-11-181-1/+3
| | | | | | | | | | At the moment it is just an alias for CLOCK_MONOTONIC which reports the same number. Sponsored by: TCP/IP Optimization Fundraise 2005 Notes: svn path=/head/; revision=152587
* Fix up markup.Ruslan Ermilov2005-11-181-7/+9
| | | | Notes: svn path=/head/; revision=152571
* Fix up markup etc. in recently born manpage.Ruslan Ermilov2005-11-185-152/+316
| | | | Notes: svn path=/head/; revision=152570
* -mdoc sweep.Ruslan Ermilov2005-11-1722-35/+52
| | | | Notes: svn path=/head/; revision=152551
* The KAME's getipnodebyaddr() code honor the MULTI_PTRS_ARE_ALIASESHajimu UMEMOTO2005-11-151-0/+1
| | | | | | | | | | | | define also, but res_config.h was not included into libc/net/name6.c. So getipnodebyaddr() ignored the multiple PTRs. PR: kern/88241 Submitted by: Dan Lukes <dan__at__obluda.cz> MFC after: 3 days Notes: svn path=/head/; revision=152445
* Fix a stub function so that is has the correct number ofDaniel Eischen2005-11-121-3/+3
| | | | | | | | | arguments. While I'm here, correct a couple of [tab] alignments. Submitted by: bland Notes: svn path=/head/; revision=152333
* add continued status.David Xu2005-11-121-4/+4
| | | | Notes: svn path=/head/; revision=152325
* Insert missing copyright headers.David Xu2005-11-125-0/+10
| | | | Notes: svn path=/head/; revision=152324
* Only signo should be marked with .Fa.David Xu2005-11-111-1/+2
| | | | Notes: svn path=/head/; revision=152314
* Fix plural.Xin LI2005-11-111-1/+1
| | | | Notes: svn path=/head/; revision=152300
* Fix plural.David Xu2005-11-111-1/+1
| | | | Notes: svn path=/head/; revision=152299
* Fix copy-paste issue.David Xu2005-11-111-2/+0
| | | | Notes: svn path=/head/; revision=152298
* Add POSIX timer manuals.David Xu2005-11-114-0/+368
| | | | Notes: svn path=/head/; revision=152297
* Add descriptions about signal queue.David Xu2005-11-111-0/+24
| | | | Notes: svn path=/head/; revision=152295
* Er, highlight function wait().David Xu2005-11-111-7/+10
| | | | Notes: svn path=/head/; revision=152294
* Add notes about queued SIGCHLD.David Xu2005-11-111-0/+10
| | | | Notes: svn path=/head/; revision=152293
* Add manuals for sigqueue, sigtimedwait, sigwaitinfo.David Xu2005-11-113-2/+296
| | | | Notes: svn path=/head/; revision=152291
* Document the fact that sendfile(2) can EOPNOTSUPP if the underlyingJoseph Koshy2005-10-311-0/+5
| | | | | | | | | filesystem for the file being transferred doesn't support UIO_NOCOPY. Reported by: Niki Denev <nike_d@cytexbg.com> Notes: svn path=/head/; revision=151896
* Sort error list.Joseph Koshy2005-10-311-21/+22
| | | | Notes: svn path=/head/; revision=151895
* Make __sem_timedwait() consistent with the sem_timedwait() prototype.Stefan Farfeleder2005-10-181-1/+1
| | | | Notes: svn path=/head/; revision=151449
* Fix a long line in copyright notice.Olivier Houchard2005-10-031-1/+2
| | | | | | | Pointed out by: Gavin Atkinson gavin.atkinson ury york ac uk Notes: svn path=/head/; revision=150877
* Add an asm version of strlen() for arm (how useful).Olivier Houchard2005-10-032-1/+78
| | | | Notes: svn path=/head/; revision=150875
* Just by allocating size*2 bytes we can't be sure that new size will be enough,Andrey A. Chernov2005-09-181-2/+2
| | | | | | | | | | | | | | so change two if (size not enough) { reallocf(size*2); } into while (size not enough) { reallocf(size*2); } Notes: svn path=/head/; revision=150297
* Use the correct function name as .Nm argument.Christian Brueffer2005-09-181-1/+1
| | | | | | | | | PR: 86169 Submitted by: Toby Peterson <toby@apple.com> MFC after: 3 days Notes: svn path=/head/; revision=150291
* Cosmetic fixes to prev. commit.Andrey A. Chernov2005-09-151-4/+4
| | | | | | | | | | | Change first MAXPATHLEN to more standard PATH_MAX Change second MAXPATHLEN to 1024 (it is temp buffer not related) Change comment to reflect that. Suggested by: bde Notes: svn path=/head/; revision=150172
* Remove any hardcoded assumptions about malloc's way of allocating,Andrey A. Chernov2005-09-141-4/+4
| | | | | | | | | | | | just use MAXPATHLEN. It prevents potential buffer overflow with other malloc implementations. (this change based on submitted patch) PR: 86135 Submitted by: Trevor Blackwell <tlb@tlb.org> Notes: svn path=/head/; revision=150138
* Don't reuse *pl to skip [], it is already used for {} parts in the loop aboveAndrey A. Chernov2005-09-141-3/+3
| | | | | | | | | | (submitted patch slightly modified) PR: 86038 Submitted by: Gerd Rausch <gerd@juniper.net> Notes: svn path=/head/; revision=150137
* Include a couple of headers to ensure consistency between the prototype andStefan Farfeleder2005-09-1216-0/+22
| | | | | | | the function definition. Notes: svn path=/head/; revision=150065
* - Add prototypes for __cmpdi2() and __ucmpdi2().Stefan Farfeleder2005-09-121-10/+2
| | | | | | | - Remove GCC 1 stuff. Notes: svn path=/head/; revision=150058
* Use prototypes for CHIN1() and CHIN().Stefan Farfeleder2005-09-121-6/+2
| | | | Notes: svn path=/head/; revision=150053
* Move the declaration of __cleanup to libc_private.h as it is used in bothStefan Farfeleder2005-09-125-4/+12
| | | | | | | stdio/ and stdlib/. Don't define __cleanup twice. Notes: svn path=/head/; revision=150040
* Add a couple of missing MLINKS.Stefan Farfeleder2005-09-111-0/+17
| | | | Notes: svn path=/head/; revision=150009
* The arguments for time2posix() and posix2time() are time_t values, notStefan Farfeleder2005-09-111-3/+3
| | | | | | | pointers. Notes: svn path=/head/; revision=149995
* Add mkfifo(2) to the man page SEE ALSO list for umask(2) -- it'sRobert Watson2005-09-101-0/+1
| | | | | | | | | mentioned in the description. MFC after: 2 days Notes: svn path=/head/; revision=149956
* Add an MLINK for devname_r().Stefan Farfeleder2005-09-101-0/+1
| | | | Notes: svn path=/head/; revision=149941
* The header and the man page say that sethostid() returns void, so make theStefan Farfeleder2005-09-101-4/+4
| | | | | | | definition match. Include <unistd.h>. Notes: svn path=/head/; revision=149940
* Fix parameter types of close and get members in DB.Stefan Farfeleder2005-09-101-2/+2
| | | | Notes: svn path=/head/; revision=149939
* Remove references to nonexistent "FreeBSD Security Architecture" document.Tim J. Robbins2005-09-055-25/+0
| | | | Notes: svn path=/head/; revision=149792
* Added a sentence to explain what "span" means.Gary W. Swearingen2005-08-292-1/+15
| | | | | | | | | | PR: docs/84850 Submitted by: garys MFC after: 3 days Approved by: keramida Notes: svn path=/head/; revision=149603
* - Document the fact that the real length of listen queue is 1.5 moreGleb Smirnoff2005-08-291-1/+16
| | | | | | | | | | | | | than the value of backlog argument. - Document the fact that a subsequent listen(2) calls on the listening socket change the backlog argument. - Note that current listen queue lengths can be queried using netstat(1). Submitted by: Igor Sysoev <is rambler-co.ru> Wording by: gnn Notes: svn path=/head/; revision=149572
* Add the function memmem(3) as found in glibc and others.Andre Oppermann2005-08-256-5/+159
| | | | | | | | | | | | | It is the binary equivalent to strstr(3). void *memmem(const void *big, size_t big_len, const void *little, size_t little_len); Submitted by: Pascal Gloor <pascal.gloor at spale.com> MFC after: 3 days Notes: svn path=/head/; revision=149466
* Include <sys/types.h> and <limits.h> ourselves, don't assume they are includedStefan Farfeleder2005-08-205-0/+5
| | | | | | | | | | | | | through <pthread.h>. gen/sem.c: Prerequisite for <_semaphore.h> net/getprotoent.c: USHRT_MAX net/getservent.c: USHRT_MAX stdio/ungetwc.c: MB_LEN_MAX stdio/vfwscanf.c: MB_LEN_MAX Notes: svn path=/head/; revision=149313