Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | mdoc related cleanup: | phantom | 2000-05-06 | 1 | -17/+17 | |
| | | | | | | . use construction ".Aq Pa filename" instead of ".Pa <filename>" . replace Section Heading macro (.Sh) with Subsection (.Ss) macro for subsections | |||||
* | Use suggested by mdoc(7) style section name (ERROR -> ERRORS) | phantom | 2000-05-06 | 1 | -1/+1 | |
| | ||||||
* | Use `Er' variable to define first column width in ERRORS section. | phantom | 2000-05-06 | 6 | -6/+6 | |
| | ||||||
* | Minor mdoc cleanup. | mpp | 2000-05-05 | 2 | -3/+5 | |
| | | | | PR: docs/13218 | |||||
* | Add a kqueue(2) manual page. | jlemon | 2000-05-04 | 2 | -1/+401 | |
| | ||||||
* | Use `Er' variable to define first column width in ERRORS section. It was | phantom | 2000-05-04 | 53 | -54/+54 | |
| | | | | initially suggested by mdoc(7) style, but was broken over the years | |||||
* | mdoc(7) cleanup: | phantom | 2000-05-04 | 1 | -6/+5 | |
| | | | | | | | | | | | . use real function names as `.Nm' macro argument in NAME section. It allows them to appear in apropos(1) or whatis(1) output. . replace empty lines with `.Pp' macro. . replace hardcoded standard names with their `.St' macro equivalents. . sort cross references in SEE ALSO section | |||||
* | Use assembler directives rather than ALTENTRY() so that longjmp() and | jasone | 2000-05-04 | 4 | -20/+16 | |
| | | | | | siglongjmp() are weak symbols. This is necessary to allow static linking with the linuxthreads library port. | |||||
* | Add missing man pages. Fix various compliance bugs, mostly having to do with | jasone | 2000-05-02 | 1 | -0/+85 | |
| | | | | | | error return values. Implement pthread_mutexattr_gettype(). PR: docs/16537, docs/17538 | |||||
* | Remove cancellation point propagation. | jasone | 2000-04-26 | 1 | -4/+4 | |
| | ||||||
* | Fix typo. Use `.Fa' to denote a function argument. | jkoshy | 2000-04-26 | 1 | -2/+4 | |
| | | | | | PR: docs/18214 Submitted by: Ben Smithurst <ben@scientia.demon.co.uk> | |||||
* | Spell MAP_NOSYNC correctly. | wollman | 2000-04-23 | 2 | -2/+2 | |
| | | | | Submitted by: allenc@verinet.com | |||||
* | .Lb-ify | wollman | 2000-04-23 | 2 | -0/+4 | |
| | ||||||
* | Introduce .Lb macro to libutil manpages | phantom | 2000-04-22 | 1 | -6/+2 | |
| | | | | | | Sort .Nm values in some manpages Remove explicit note about compiling with -lutil, it's implicitly declared by .Lb macro now. | |||||
* | Introduce .Lb macro to libposix1e manpages | phantom | 2000-04-22 | 11 | -15/+37 | |
| | | | | | Sort some .Nm values Decapitalize .Nd values | |||||
* | Introduce .Lb macro to libc_r manpages. | phantom | 2000-04-22 | 6 | -0/+12 | |
| | ||||||
* | Add shm_open(3) and shm_unlink(3). The documentation could use a good | wollman | 2000-04-22 | 4 | -2/+457 | |
| | | | | | bit of work (and is stylistically probably the worst manual page I've ever written). | |||||
* | Introduce ".Lb" macro to libc manpages. | phantom | 2000-04-21 | 363 | -1/+727 | |
| | | | | More libraries manpages updates following. | |||||
* | Change getaddrinfo() resolve order | shin | 2000-04-20 | 2 | -75/+317 | |
| | | | | | | | | | | | from all AAAA trial, then all A trial to try AAAA and A for each trial TODO: more fix for the case where IPv4 mapped IPv6 addr is disabled Reviewed by: ume | |||||
* | Add comment after locales | ache | 2000-04-12 | 12 | -24/+48 | |
| | | | | | | Use .Li for type Suggested-by: sheldonh | |||||
* | Fix typo, reported by George Cox. | asmodai | 2000-04-12 | 1 | -8/+8 | |
| | | | | | | Fix hard sentence breaks. Submitted by: George Cox <gjvc@sophos.com> | |||||
* | Do proper byte swapping in 64bit routines. | sheldonh | 2000-04-12 | 1 | -14/+23 | |
| | | | | | | PR: 17681 Submitted by: "David E. Cross" <crossd@cs.rpi.edu> Obtained from: NetBSD | |||||
* | Better wording according to multibyte(3) | ache | 2000-04-11 | 12 | -24/+96 | |
| | | | | | Better man formatting Add reference to multibyte(3) | |||||
* | Add a missing THREAD_UNLOCK() found missing by Valentin Nechayev | phk | 2000-04-10 | 2 | -8/+2 | |
| | | | | | | | <netch@segfault.kiev.ua> Remove allocation failure check from 'A' option, the 'X' option does this as a standalone check now. | |||||
* | Document EWOULDBLOCK as a possible errno return value. | archie | 2000-04-09 | 1 | -0/+7 | |
| | ||||||
* | Back out valid argument domain change - sneak to this function by error. | ache | 2000-03-28 | 1 | -4/+2 | |
| | | | | | Reword test condition better. Previous variant was true for negative characters too. | |||||
* | Describe valid argument domain for 8-bit wide locales to prevent common error | ache | 2000-03-28 | 15 | -0/+30 | |
| | | | | calling ctype functions with signed char as an argument. | |||||
* | Decrement the timeout being passed to poll() if poll was interrupted for | jlemon | 2000-03-26 | 1 | -5/+22 | |
| | | | | | | | some reason. This will prevent an infinite loop if (say) a sigalarm is being scheduled at a more frequent interval than the poll timeout. PR: 2191, 8847, 10553 | |||||
* | Spelling, fprintf -> err, remove unneeded variable declaration | charnier | 2000-03-26 | 1 | -8/+3 | |
| | ||||||
* | Fixed missing #include of <sys/types.h> in synopsis. | bde | 2000-03-23 | 1 | -2/+3 | |
| | | | | | Fixed spelling error in prototype for inet_option_space(). Fixed syntax error in prototype for inet6_option_alloc(). | |||||
* | Fixed missing #include of <sys/types.h> in synopsis. | bde | 2000-03-23 | 1 | -0/+1 | |
| | ||||||
* | Fixed wrong arg type in synopsis. | bde | 2000-03-23 | 1 | -1/+1 | |
| | ||||||
* | Add a man page for aio_waitcomplete(). Update the aio_cancel() man page to | jasone | 2000-03-21 | 3 | -19/+179 | |
| | | | | | | reflect the fact that aio_cancel() works now. Submitted by: Christopher Sedore <cmsedore@maxwell.syr.edu> | |||||
* | Back out that last commit, it may be insecure (pointed out by Warner | bsd | 2000-03-16 | 1 | -1/+1 | |
| | | | | Losh). | |||||
* | Slight adjustment to __ivaliduser() - don't ignore the last line in | bsd | 2000-03-16 | 1 | -1/+1 | |
| | | | | the .rhosts file just because there is no ending linefeed. | |||||
* | Take care to avoid having "strong" and "weak" symbols of the same name in | jasone | 2000-03-16 | 10 | -12/+14 | |
| | | | | libc_r. | |||||
* | Fix uninitialized variable. | jlemon | 2000-03-15 | 1 | -1/+1 | |
| | | | | Submitted by: tanimura | |||||
* | Merge from NetBSD. Addition of inet_ntop() and inet_pton() description. | shin | 2000-03-12 | 2 | -2/+60 | |
| | | | | | | Specified by: Robert Muir <rmuir@looksharp.net> Obtained from: NetBSD | |||||
* | Cosmetic fix. Re-order MLINKS for if_indextoname.3 and inet.3 as alphabetical | shin | 2000-03-12 | 1 | -2/+2 | |
| | | | | order. | |||||
* | Correct MLINKS contents for rcmd.3, because it is obsolete due to | shin | 2000-03-12 | 1 | -3/+4 | |
| | | | | | | | recent changes to rcmd.3. links to iruserok_af.3, ruserok_af.3 are removed. link to iruserok_sa.3 is added. | |||||
* | Import from KAME. Advanced API related function descriptions. | shin | 2000-03-12 | 3 | -1/+790 | |
| | | | | Obtained from: KAME project | |||||
* | Add in IPV4 NIS support. | jlemon | 2000-03-09 | 1 | -0/+39 | |
| | | | | | PR: 17290 (but not the same patch) Approved by: jkh | |||||
* | Fix various unsigned vs signed errors that caused problems with uids | paul | 2000-03-09 | 1 | -5/+14 | |
| | | | | | | | and gids bigger than 16 bits. Added checks for uids and gids that are bigger than 32 bits. Approved by: jkh (partly, this fix is bigger than I first intended) | |||||
* | More grammer, wording, and mdoc fixes. | shin | 2000-03-09 | 1 | -26/+20 | |
| | | | | | Submitted by: bde Reviewed by: sheldonh | |||||
* | Temporary cosmetic change to prevent gcc-2.95.2 from doing an | cracauer | 2000-03-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | | optimization that generates code our current as doesn't understand. The result is bad code that damages dynamic symbol locations at runtime. Ouch. See PR bin/16862 and discussion in -current. This change will be backed out when gcc and gas are back in sync. PR: Fixes bin/16862, but not the underlying problem. Submitted by: bde Approved by: jdk | |||||
* | Replace structure copy form ifreq obtained by SIOCGIFADDR | shin | 2000-03-03 | 2 | -2/+2 | |
| | | | | | | to memcpy(), to avoid unaligned access trap on alpha. Approved by: jkh | |||||
* | CMSG_XXX macros alignment fixes to follow RFC2292. | shin | 2000-03-03 | 1 | -6/+18 | |
| | | | | | | | Approved by: jkh Submitted by: Partly from tech@openbsd Reviewed by: itojun | |||||
* | Fixed wrong function return types in synopsis. | bde | 2000-03-03 | 2 | -4/+4 | |
| | ||||||
* | -Reflect function name change. | shin | 2000-03-02 | 1 | -36/+83 | |
| | | | | | | | | | | | | | | -Added more description. -Many grammer fix. -Fix hard sentence break. -Many other man style fix. Thanks for bde finding out the problem. Thanks for sheldon for the patient and thorough review. :-) Submitted by: bde Reviewed by: sheldonh | |||||
* | Remove more single-space hard sentence breaks. | sheldonh | 2000-03-02 | 4 | -6/+12 | |
| |