Ruslan Ermilov
93f0f0427b
Fix prototypes.
...
Attn davidxu@: most likely, the description should also be tweaked
after your undocumented changes that changed these prototypes.
2005-11-24 07:33:35 +00:00
Simon L. B. Nielsen
71dac3fb8f
Do not explicitly state how many bytes an argument list can be in the
...
description of E2BIG, since it's now larger on some platforms.
MFC after: 3 days
2005-11-19 11:30:55 +00:00
Andre Oppermann
f6232df7a4
Document CLOCK_UPTIME which returns the current uptime in SI seconds.
...
At the moment it is just an alias for CLOCK_MONOTONIC which reports
the same number.
Sponsored by: TCP/IP Optimization Fundraise 2005
2005-11-18 17:13:22 +00:00
Ruslan Ermilov
5507a2aed5
Fix up markup etc. in recently born manpage.
2005-11-18 11:53:23 +00:00
Ruslan Ermilov
110e1704d3
-mdoc sweep.
2005-11-17 13:00:00 +00:00
David Xu
ec0fd3f855
add continued status.
2005-11-12 01:37:03 +00:00
David Xu
b1e515a3f4
Insert missing copyright headers.
2005-11-12 01:19:05 +00:00
David Xu
b71ec5beb4
Only signo should be marked with .Fa.
2005-11-11 14:52:06 +00:00
Xin LI
16902e8a3f
Fix plural.
2005-11-11 08:00:44 +00:00
David Xu
d971c2eec2
Fix plural.
2005-11-11 07:50:51 +00:00
David Xu
9463da7fe5
Fix copy-paste issue.
2005-11-11 07:50:09 +00:00
David Xu
bb5eebe6f2
Add POSIX timer manuals.
2005-11-11 07:48:38 +00:00
David Xu
a0e82eba5d
Add descriptions about signal queue.
2005-11-11 05:40:39 +00:00
David Xu
c05e95d4ff
Er, highlight function wait().
2005-11-11 05:38:40 +00:00
David Xu
4c1a973e6e
Add notes about queued SIGCHLD.
2005-11-11 05:30:48 +00:00
David Xu
e84ece6bef
Add manuals for sigqueue, sigtimedwait, sigwaitinfo.
2005-11-11 03:13:25 +00:00
Joseph Koshy
9dc2f0df89
Document the fact that sendfile(2) can EOPNOTSUPP if the underlying
...
filesystem for the file being transferred doesn't support UIO_NOCOPY.
Reported by: Niki Denev <nike_d@cytexbg.com>
2005-10-31 04:08:28 +00:00
Joseph Koshy
012546dd27
Sort error list.
2005-10-31 04:00:20 +00:00
Robert Watson
f0dc021549
Add mkfifo(2) to the man page SEE ALSO list for umask(2) -- it's
...
mentioned in the description.
MFC after: 2 days
2005-09-10 20:47:02 +00:00
Gleb Smirnoff
83c83f3e46
- Document the fact that the real length of listen queue is 1.5 more
...
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
2005-08-29 10:23:46 +00:00
Giorgos Keramidas
6fb9b618f5
Fix all the spelling mistakes I could find in the man pages for words
...
that have at least 3 characters.
MFC after: 1 week
Thanks to: Music band ``Chingon''
for keeping me company while searching for these.
2005-07-31 03:30:48 +00:00
Diomidis Spinellis
87a236caf5
Document the ECONNRESET errno value.
2005-07-29 07:42:10 +00:00
John-Mark Gurney
5ba593de9e
remove the supposed max of 2^31, it hasn't been this small in a very
...
long time... i.e. since this file was imported... (ufs1 supports much
larger files then this)...
Submitted by: Ivan Voras
MFC after: 1 week
2005-07-18 22:27:41 +00:00
Maxim Sobolev
9c007cf29e
Document the fact that if MAP_FIXED request has been successful it
...
replaces any previous mapping to the same address.
Obtained from: IEEE Std 1003.1, 2004 Edition
2005-07-15 11:37:25 +00:00
John Baldwin
bcd9e0dd20
- Add two new system calls: preadv() and pwritev() which are like readv()
...
and writev() except that they take an additional offset argument and do
not change the current file position. In SAT speak:
preadv:readv::pread:read and pwritev:writev::pwrite:write.
- Try to reduce code duplication some by merging most of the old
kern_foov() and dofilefoo() functions into new dofilefoo() functions
that are called by kern_foov() and kern_pfoov(). The non-v functions
now all generate a simple uio on the stack from the passed in arguments
and then call kern_foov(). For example, read() now just builds a uio and
calls kern_readv() and pwrite() just builds a uio and calls kern_pwritev().
PR: kern/80362
Submitted by: Marc Olzheim marcolz at stack dot nl (1)
Approved by: re (scottl)
MFC after: 1 week
2005-07-07 18:17:55 +00:00
Hiten Pandya
a1601503f5
Use 'manual page' instead of 'man page' for consistency.
...
Approved by: re (hrs)
2005-06-30 13:18:15 +00:00
Ruslan Ermilov
f789cb8293
Assorted markup fixes.
...
Approved by: re
2005-06-15 19:04:04 +00:00
Craig Rodrigues
e5d54f7733
Fix the wording in this man page so that it
...
reflects the actual behavior of the API
for listing extended attributes.
PR: docs/79261
Submitted by: rodrigc
Reviewed by: rwatson, kan
Approved by: das (mentor)
2005-06-10 16:54:17 +00:00
Alan Cox
2ca32bcc02
Update .Dd value.
2005-06-04 19:44:09 +00:00
Alan Cox
bbe7bbdfee
Eliminate the original method of requesting notification of aio_read(2) and
...
aio_write(2) completion through kevent(2). This method does not work on
64-bit architectures. It was deprecated in FreeBSD 4.4. See revisions
1.87 and 1.70.2.7.
Change aio_physwakeup() to call psignal(9) directly rather than indirectly
through a timeout(9). Discussed with: bde
Correct a bug introduced in revision 1.65 that could result in premature
delivery of a signal if an lio_listio(2) consisted of a mixture of
direct/raw and queued I/O operations. Observed by: tegge
Eliminate a field from struct kaioinfo that is now unused.
Reviewed by: tegge
2005-06-04 19:16:33 +00:00
Giorgos Keramidas
e3446e1f8e
Document the fact that accept(2) may return EINVAL when addrlen is
...
negative (in addition to returning EINVAL when called on a descriptor
that is not a socket).
Submitted by: Arne H Juul <arnej@europe.yahoo-inc.com>
PR: docs/80587
2005-05-04 11:09:26 +00:00
Alfred Perlstein
d025278aa1
Make MSG_NOSIGNAL available to native programs.
...
Bump FreeBSD_version to note this change.
Reviewed by: sobomax
2005-03-09 00:17:33 +00:00
Tom Rhodes
61001d7506
Fix a few markup nits in previous commit.
...
Noticed by: ru, who else? :)
2005-02-25 00:40:46 +00:00
Tom Rhodes
0fa17d320d
Do not mislead users into checking for a mount_ufs or mount_ufs2 manual
...
page. They do not exist.
PR: 53303
Submitted by: Marc Silver <marcs@draenor.org> (original version)
2005-02-24 00:32:58 +00:00
Christian S.J. Peron
e80750df02
-document the fact that extattr_get_* can fail if the requested
...
attribute does not exist on the file.
-bump document date
Reviewed by: rwatson,trhodes
MFC after: 1 week
2005-02-24 00:04:45 +00:00
Tom Rhodes
87dbe6bb4b
Xref chflags(2).
...
Note that unlink.2 can return EPERM if the immutable or append-only flags are set.
PR: 77043
2005-02-23 23:55:58 +00:00
Ruslan Ermilov
423ac68026
Expand contractions.
2005-02-15 09:27:00 +00:00
Ruslan Ermilov
36a142c455
Expand contractions.
2005-02-13 23:45:54 +00:00
Ruslan Ermilov
0227791b40
Expand *n't contractions.
2005-02-13 22:25:33 +00:00
Colin Percival
75fa96cc9b
read(), pread(), write(), and pwrite() return EINVAL if they are asked
...
for more than INT_MAX bytes.
2005-02-10 20:09:01 +00:00
Ruslan Ermilov
6b806d21d1
Fixed the misplaced $FreeBSD$.
2005-02-09 18:07:17 +00:00
Giorgos Keramidas
7a46d27566
EISCONN may be returned by sendto() if an attempt is made to specify the
...
destination address to a datagram socket that is already connected.
Submitted by: Rudolf Cejka <cejkar@fit.vutbr.cz>
PR: docs/76399
MFC after: 1 week
2005-01-24 20:41:44 +00:00
Ruslan Ermilov
ead5223f54
Fixed punctuation in xrefs.
2005-01-21 20:48:00 +00:00
Ruslan Ermilov
24a0682c64
Sort sections.
2005-01-20 09:17:07 +00:00
Ruslan Ermilov
6a5796e734
Eliminate macro calls inside literal displays.
2005-01-15 12:28:01 +00:00
Ruslan Ermilov
2d82ac3110
Scheduled mdoc(7) sweep.
2005-01-11 20:50:51 +00:00
Tom Rhodes
a51d79c1d3
Catch up with stat.h a bit:
...
o Sticky bit is actually defined as S_ISTXT not S_ISVTX.
o Sticky bit is wrapped in if __BSD_VISIBLE not _POSIX_SOURCE.
2004-12-29 20:00:29 +00:00
Giorgos Keramidas
f56be64fb2
``NULL is a specific instance of a null pointer constant; the generic is
...
a "null pointer".''
Making good use of the excellent explanations sent to me by Ruslan
Ermilov, Garrett Wollman and Bruce Evans, correct the descriptions of
null pointers. They are just "null pointers", not nil, not NULL or
".Dv NULL".
Suggested by: ru, wollman, bde
Reviewed by: ru, wollman
Pointy hat: keramida
2004-12-23 23:45:25 +00:00
Giorgos Keramidas
9168f08258
Punctuation marks should be separate arguments in groff macros.
...
Noticed by: ru
2004-12-22 16:20:12 +00:00
Giorgos Keramidas
411d727cf8
Use .Dv NULL when referring to NULL C pointers, instead of "nil".
2004-12-22 16:15:52 +00:00
Giorgos Keramidas
563058ccff
Cross reference init(8) too, instead of vaguely referring to the
...
"initialization process".
2004-12-22 15:44:21 +00:00
Ruslan Ermilov
e354922c78
MNT_NODEV is deprecated.
2004-11-29 09:56:12 +00:00
Yaroslav Tykhiy
49ea9a58a7
Document more fields of struct stat.
...
Note to mdoc(7) police:
The document date has already been touched today.
2004-11-15 14:16:31 +00:00
Yaroslav Tykhiy
502f968bb9
Use .Vt "struct stat" consistently.
2004-11-15 13:58:52 +00:00
Yaroslav Tykhiy
93d7fd123e
Nitpicking on grammar.
2004-11-15 13:55:33 +00:00
Yaroslav Tykhiy
fed4da2585
Improve mdoc(7) markup of the page: add several missing macros,
...
use .Va instead of .Li for struct stat fields.
2004-11-15 13:45:13 +00:00
Yaroslav Tykhiy
b337489271
Document the S_IS*(mode) macros used to test for file types.
...
Bump the document date accordingly.
2004-11-15 13:37:56 +00:00
Ceri Davies
47c01d89b4
Add necessary whitespace to correct cross references.
...
PR: docs/73193
Submitted by: Jilles Tjoelker <jilles at stack.nl>
2004-10-27 11:26:51 +00:00
Yaroslav Tykhiy
a39fd5061b
Reword the last change a bit, add mdoc(7) markup.
...
Discussed with: bde
2004-10-25 13:35:03 +00:00
Yaroslav Tykhiy
017aaf79e1
Since sendfile(2) works on regular files only,
...
which have no negative offsets, "negative" and
"invalid" are equivalent WRT the offset argument.
Suggested by: bde
2004-10-18 10:02:04 +00:00
Alfred Perlstein
af2e24d782
Document EMSGSIZE return from recvmsg due to insufficient free files
...
when transfering rights (file descriptors.)
2004-10-17 07:13:34 +00:00
Yaroslav Tykhiy
9a0cabd9e4
Explain it is a negative offset that EINVAL may indicate.
...
Now readers won't get an impression that pointing to beyond
the current end of file will result in EINVAL.
MFC after: 1 week
2004-10-16 09:53:35 +00:00
Yaroslav Tykhiy
6def5837f5
Improve mdoc(7) markup.
2004-10-16 09:46:38 +00:00
Yaroslav Tykhiy
fc5cfaae79
Give details on what will happen if the `offset' argument
...
to sendfile(2) falls beyond the end of file.
Touch .Dd.
PR: bin/72649 (in the audit trail)
MFC after: 1 week
2004-10-16 09:39:25 +00:00
Julian Elischer
599e7243d3
Make less wrong for desciptions of signal handling
...
MFC in: 1 week
2004-10-08 20:40:30 +00:00
Peter Pentchev
2f67164732
Add a BUGS section and copy the wording from mmap(2)'s MAP_NOSYNC,
...
documenting the obsoleteness of the msync(2) syscall and its single
remaining purpose.
PR: 70916
Submitted by: Radim Kolar <hsn@netmag.cz>
MFC after: 3 days
2004-09-03 06:24:25 +00:00
Peter Pentchev
9f4c0e5c8f
Document the MNT_SNAPSHOT mount flag with a cross-reference
...
to mksnap_ffs(8).
PR: 70402
Submitted by: James Raftery <james@now.ie>
2004-08-13 14:33:03 +00:00
Brian Feldman
ea84c8dc30
Update "documentation date" fields.
2004-08-10 16:38:19 +00:00
Brian Feldman
831bc6f574
Update mlock(2) manpage to cross-reference m{,un}lockall(2), remove
...
a case where ENOMEM could be returned by munlock(2), and add possible
system deadlock to the BUGS section.
2004-08-10 14:52:42 +00:00
Peter Pentchev
9a3daf494b
Fix a case of _SC_CLK_TCK being misspelled as _SC_CLOCK_TCK.
...
PR: 69428
Submitted by: Sascha Schneider <suntsu@suntsu.org>
MFC after: 2 weeks
2004-08-06 14:49:11 +00:00
Christian S.J. Peron
ef6dea1404
Back out previous commit. Even though statfs(2) can take a regular
...
file as an argument, it may still fail for the same reasons that
open(2) can.
Pointed out by: Jilles Tjoelker
Apporived by: bmilekic (mentor)
2004-07-20 19:30:57 +00:00
Christian S.J. Peron
5b154abc54
Remove reference to ENOTDIR in the documented errors
...
for statfs(2). This is false, if the pathname specified
is a regular file, then the information for the file
system that the file lives on will be returned.
Approved by: bmilekic (mentor)
2004-07-20 18:35:33 +00:00
Hartmut Brandt
b711f5ddea
Document the MSG_DONTWAIT flag.
2004-07-16 17:15:37 +00:00
Alfred Perlstein
85e8765b7e
Clarify getfsstat(2) usage.
...
The getfsstat(2) function expects a buffer and a count, and returns a count.
The confusing part is that the count it takes is a byte count, while the
return value is a count of the number of structures it has filled out.
Spell this out.
2004-07-16 01:18:13 +00:00
Marcel Moolenaar
b41e0f0f56
Document the new PT_LWPINFO request. In fact, the request is so new
...
it hasn't even been implemented yet. I just wanted to be the first
to try a new approach to development ;-)
2004-07-12 04:43:58 +00:00
Garrett Wollman
5b1eaa7bb6
Eliminate some magic numbers and correct description of _PC_NO_TRUNC.
...
Slight emendation to _PC_CHOWN_RESTRICTED, which is in a very similar
boat.
2004-07-08 20:27:38 +00:00
Alfred Perlstein
83f46f9e33
there's no such define as KERN_NAME_MAX, change to _POSIX_NAME_MAX.
2004-07-07 20:47:42 +00:00
Ruslan Ermilov
51f98e585b
Fix the NAME section making whatis(1) happy in particular.
2004-07-05 17:12:53 +00:00
Ruslan Ermilov
1c85060a13
Sort SEE ALSO references (in dictionary order, ignoring case).
2004-07-04 20:55:50 +00:00
Ruslan Ermilov
a817e9e674
Fixed markup.
2004-07-03 23:14:34 +00:00
Ruslan Ermilov
30950a21e1
Eliminate double whitespace.
2004-07-03 22:30:10 +00:00
Ruslan Ermilov
1a0a934547
Mechanically kill hard sentence breaks.
2004-07-02 23:52:20 +00:00
Ruslan Ermilov
d37ea99837
Removed trailing whitespace.
2004-07-02 19:07:33 +00:00
Ruslan Ermilov
33992dc0ed
Markup, grammar, and spelling fixes.
2004-06-30 20:09:10 +00:00
Roman Kurakin
f01a74582c
s/SS_CANTSENDMORE/SBS_CANTSENDMORE/
2004-06-24 10:53:44 +00:00
Bruce M Simpson
cb450d2233
Be specific about which socket properties are inherited from the original
...
socket upon accept(2).
PR: docs/54995, kern/45733
2004-06-23 00:20:46 +00:00
Mike Pritchard
3c6dd63b2c
Spelling fixes.
2004-06-21 18:57:32 +00:00
Mike Pritchard
12270048ca
PR: docs/67884
...
Submitted by: Chirstopger Nehren <apeiron@comcast.net>
2004-06-21 18:24:48 +00:00
Kelly Yancey
0a0163040b
CLOCK_PROF and CLOCK_VIRTUAL are implemented now.
2004-06-17 23:13:38 +00:00
Kelly Yancey
2aab594f92
The maximum value of iovcnt is IOV_MAX, not 16.
2004-06-15 01:24:41 +00:00
David Schultz
d2b8f61223
Use .Dv instead of .Li for all the RLIMIT_* constants.
...
Requested by: ru
2004-06-14 01:32:40 +00:00
David Schultz
c294e3b58c
Document RLIMIT_AS. While here, correct an insertion sort error.
2004-06-13 22:19:29 +00:00
Yaroslav Tykhiy
e7aa25d3fb
Use ".In" to mark up C include file names.
2004-06-07 21:52:20 +00:00
Yaroslav Tykhiy
cacc8e6c5d
Each sentence should begin on a new line.
2004-06-07 21:48:02 +00:00
Yaroslav Tykhiy
431c0866bb
Extend and improve the mdoc(7) markup of this page.
...
Reviewed by: ru
2004-06-07 21:43:14 +00:00
Yaroslav Tykhiy
35641ec00f
Finally document the option to avoid zombie creation
...
through ignoring SIGCHLD.
2004-06-07 11:01:39 +00:00
Alan Cox
db9081ab70
Update the document date.
...
Reminded by: ru@
2004-05-20 18:47:15 +00:00
Alan Cox
5ae2d19711
Remove a long obsolete paragraph from the BUGS section.
2004-05-19 03:25:17 +00:00
Yaroslav Tykhiy
d0080709e7
Clarify and extend paragraphs on interoperation
...
of fcntl(2), flock(2), and lockf(3) advisory locks.
Add such a paragraph to the flock(2) manpage for the
sake of consistency.
Reviewed by: Cyrille Lefevre and Kirk McKusick on -arch
MFC after: 2 weeks
2004-05-17 23:09:10 +00:00
Josef El-Rayes
ac006f74fd
Fix typo.
...
Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us>
PR: docs/66576
2004-05-12 20:45:51 +00:00