summaryrefslogtreecommitdiff
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* Document the getdents(2) system call. The documentation wasMike Pritchard1999-07-303-165/+29
| | | | | | | | | added to the getdirentries(2) man page because 95%+ of that man page comprised the text of the getdents(2) man page I obtained from NetBSD. Notes: svn path=/head/; revision=49256
* Document the lchmod(2) system call.Mike Pritchard1999-07-302-17/+29
| | | | | | | Pointed-out-by: bde Notes: svn path=/head/; revision=49252
* Add a manual page for getdents(2). This was taken from NetBSD, butMike Pritchard1999-07-301-0/+151
| | | | | | | | | | | still needs some cleanup which is why it hasn't been added to the Makefile yet. Obtained from: NetBSD Pointed-out-by: bde Notes: svn path=/head/; revision=49251
* Document the lutimes() and futimes() system calls.Mike Pritchard1999-07-302-26/+97
| | | | | | | | PR: kern/11213 Obtained from: NetBSD w/some minor changes by me Notes: svn path=/head/; revision=49249
* Mdoc cleanup.Mike Pritchard1999-07-301-2/+3
| | | | Notes: svn path=/head/; revision=49246
* Add missing cause for an EINVAL return (msgtype < 1).Sheldon Hearn1999-07-261-1/+4
| | | | | | | | PR: 12783 Submitted by: Kevin Day <toasty@dragondata.com> Notes: svn path=/head/; revision=49113
* Correct HISTORY section, according to CVS logs.Sheldon Hearn1999-07-261-2/+3
| | | | | | | | PR: 12810 Submitted by: Alex Perel <veers@disturbed.net> Notes: svn path=/head/; revision=49108
* remove <ctype.h> - not neededAndrey A. Chernov1999-07-261-1/+0
| | | | Notes: svn path=/head/; revision=49099
* unsigned char cleanupAndrey A. Chernov1999-07-261-17/+17
| | | | | | | | | | fix wrong index from p_simp_re() PR: 8790 Submitted by: Alexander Viro <viro@math.psu.edu> (partially) Notes: svn path=/head/; revision=49094
* asprintf() does use realloc() internally, but saying so in the manpage can beTim Vanderhoek1999-07-251-4/+2
| | | | | | | | misinterpreted to mean that the pointer passed to asprintf() must be suitable for passing to realloc() as-is (ie. either a NULL pointer or a valid pointer). Notes: svn path=/head/; revision=49082
* Update the manpage for the number of symlinks in ELOOPNick Hibma1999-07-241-2/+4
| | | | | | | | PR: 12634 (partial) Submitted by: Julian H. Stacey jhs@FreeBSD.ORG Notes: svn path=/head/; revision=49055
* Backed out previous commit. devname.3 and devname.c were broken in Lite1Bruce Evans1999-07-241-4/+6
| | | | | | | | | | | (devname() returned "??" when the lookup failed, but callers expected it to return NULL). This was fixed in Lite2, but until recently the changes were only merged into devname.3. A day or two after devname.c was fixed, devname.3 was made inconsistent again by backing out most of the Lite2 changes. Notes: svn path=/head/; revision=49044
* Correct the information about the return value when no device matchesNik Clayton1999-07-201-6/+4
| | | | | | | | | | (or no information is available). PR: docs/12707 Submitted by: Chris Costello <chris@calldei.com> Notes: svn path=/head/; revision=48943
* Make devname(3) return something more intelligent than NULL if it doesn'tPoul-Henning Kamp1999-07-181-2/+27
| | | | | | | find anything in the database. Notes: svn path=/head/; revision=48882
* Enable gmon/mcount on alpha.Hidetoshi Shimokawa1999-07-162-13/+3
| | | | Notes: svn path=/head/; revision=48838
* Make profil() 64bit-safe for alpha.Hidetoshi Shimokawa1999-07-161-2/+2
| | | | | | | | | | uintfptr_t may be better for offset, but we must wait until the definition of uintfptr_t moves from machine/profile.h. Reviewed by: bde Notes: svn path=/head/; revision=48835
* Reference correct sysctl: kern.maxsockbuf --> kern.ipc.maxsockbufJonathan Lemon1999-07-151-2/+2
| | | | Notes: svn path=/head/; revision=48822
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-07-12253-1/+267
| | | | | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde Notes: svn path=/head/; revision=48794
* Fixed a minor style nit in the EXAMPLE section.Wes Peters1999-07-101-1/+1
| | | | Notes: svn path=/head/; revision=48740
* Clarify an explanation a little bit.Poul-Henning Kamp1999-07-091-4/+9
| | | | Notes: svn path=/head/; revision=48721
* Back out previous commit after discussing it with Dmitrij Tejblum.Dag-Erling Smørgrav1999-07-071-4/+0
| | | | Notes: svn path=/head/; revision=48672
* Always set errno to ENOMEM when returning 0 from malloc() or realloc().Dag-Erling Smørgrav1999-07-071-1/+5
| | | | | | | Approved by: phk Notes: svn path=/head/; revision=48670
* Make the new %Z addition thread-safe.David E. O'Brien1999-07-061-19/+49
| | | | Notes: svn path=/head/; revision=48614
* Actually impliment the documented %Z specifier.David E. O'Brien1999-07-042-2/+44
| | | | Notes: svn path=/head/; revision=48550
* Nuke the BUGS sections of these man pages because they are not appropriate.Mike Pritchard1999-07-014-12/+4
| | | | Notes: svn path=/head/; revision=48422
* Fix typos/spelling errors.Mike Pritchard1999-07-016-16/+17
| | | | Notes: svn path=/head/; revision=48421
* Add mising aio_* man pages. Fixed a minor typo in aio_read.2,Wes Peters1999-07-016-9/+575
| | | | | | | and "corrected" statement of Posix conformance. Notes: svn path=/head/; revision=48411
* Spelll 'asynchronous' coriectlyKris Kennaway1999-07-011-2/+2
| | | | Notes: svn path=/head/; revision=48392
* Fix the NAME section of the kldload.2 manpage, which made reference toSheldon Hearn1999-07-016-8/+52
| | | | | | | | | | kldunload. Add proper cross-references to the whole family. PR: 12472 Submitted by: Chris Costello <chris@calldei.com> Notes: svn path=/head/; revision=48389
* Clarify what happens if fd is set to -1Bill Fumerola1999-06-291-2/+4
| | | | | | | Submitted by: Alfred Perlstein <bright@rush.net> Notes: svn path=/head/; revision=48336
* Document that mlock() and munlock() can return EPERM if theMike Pritchard1999-06-271-1/+9
| | | | | | | | | | caller is not the super-user. Also document that we do not currently support the per-process RLIMIT_MEMLOCK limit. PR: doc/11607 Notes: svn path=/head/; revision=48262
* Just return `curbrk' for sbrk(0) to avoid syscall overhead.Hidetoshi Shimokawa1999-06-261-0/+2
| | | | Notes: svn path=/head/; revision=48253
* Correct troff sequence for backslashes in manual page.Joseph Koshy1999-06-212-2/+2
| | | | | | | | PR: docs/12322 Submitted by: Marc Ramirez <mrami@gbtb.com> Notes: svn path=/head/; revision=48064
* Typo in previous commit.Ruslan Ermilov1999-06-181-2/+2
| | | | Notes: svn path=/head/; revision=48001
* Mention that pid 1 is not affected by kill(-1, SIGXXX) too.Ruslan Ermilov1999-06-181-3/+8
| | | | Notes: svn path=/head/; revision=47999
* Minor English corrections were made; SEE ALSO was also fixed (no commas).Brian Feldman1999-06-171-4/+4
| | | | Notes: svn path=/head/; revision=47990
* Fix a minor style nit in the NAME section.Mike Pritchard1999-06-111-1/+1
| | | | Notes: svn path=/head/; revision=47881
* Move the description of the strncmp() function from the RETURN VALUESMike Pritchard1999-06-111-6/+6
| | | | | | | | | | section to the DESCRIPTION section. PR: 12133 Submitted by: Sheldon Hearn <sheldonh@uunet.co.za> Notes: svn path=/head/; revision=47879
* Improvement in the description of what this does.Mark Murray1999-06-101-10/+10
| | | | | | | Prompted by (and thanks to): W Richard Stevens Notes: svn path=/head/; revision=47870
* Ensure that host_addr (which is returned in struct hostent::h_addr_list[0])Dmitrij Tejblum1999-06-071-2/+2
| | | | | | | is aligned so that pointer to it can be safely casted to struct in_addr *. Notes: svn path=/head/; revision=47819
* Spell the .St macro correctly.Steve Price1999-06-071-1/+1
| | | | | | | PR: 11704 Notes: svn path=/head/; revision=47812
* Spell isinf(3) correctly.Steve Price1999-06-071-1/+1
| | | | | | | PR: 11974 Notes: svn path=/head/; revision=47810
* Update of intro(2)/errno(2) in the ongoing effort of the Programmer'sJustin M. Seger1999-06-061-0/+25
| | | | | | | | | | Documentation Project <http://home.wxs.nl/~asmodai/pdp.html> Submitted by: Jeroen Ruigrok van der Werven <asmodai@wxs.nl> PR: docs/12030 Notes: svn path=/head/; revision=47785
* Change an internal variable from "class" to "ns_class" for C++'s benefit.Peter Wemm1999-06-041-2/+2
| | | | | | | | | Apparently BIND-8.2.1 uses ns_class. Submitted by: John Plevyak <jplevyak@inktomi.com> Notes: svn path=/head/; revision=47742
* Apply patch for PR #12008: remember to reset _yp_enabled flag inBill Paul1999-06-041-0/+2
| | | | | | | | | | endpwent() so we don't trip over a NULL db pointer later. PR: 12008 Submitted by: Valentin Netchayev <netch@lucky.net> Notes: svn path=/head/; revision=47721
* Typo.Pierre Beyssac1999-05-251-2/+2
| | | | | | | | PR: docs/11832 Submitted by: Ralf S. Engelschall <rse@engelschall.com> Notes: svn path=/head/; revision=47489
* Added Posix rand_r function.Wes Peters1999-05-242-5/+74
| | | | Notes: svn path=/head/; revision=47474
* Chflags was clearing all flags supplied on the command line after aJean-Marc Zucconi1999-05-213-6/+6
| | | | | | | | | | clearing flag like dump or noschg, etc. PR: bin/10071 Submitted by: Andreas Klussmann <andreas@infosys.heitec.net> Notes: svn path=/head/; revision=47367
* Fixed disordering and duplication of MLINKS in previous commit toBruce Evans1999-05-192-3/+3
| | | | | | | libc/string/Makefile.inc. psignal.3 doesn't live in libc/string. Notes: svn path=/head/; revision=47320
* Add a strsignal(3) (like strerror(3)) for libc compatability with otherPeter Wemm1999-05-184-6/+95
| | | | | | | systems. NetBSD, Linux, SVR4 etc all have it. Notes: svn path=/head/; revision=47289