davidxu
e64485ffe5
Add manuals for sigqueue, sigtimedwait, sigwaitinfo.
2005-11-11 03:13:25 +00:00
jkoshy
5f40723405
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
jkoshy
8ec6c5c60f
Sort error list.
2005-10-31 04:00:20 +00:00
rwatson
c79382b4d0
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
glebius
b87dfd9adc
- 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
keramida
ac7c9f771d
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
dds
a3aeeccbca
Document the ECONNRESET errno value.
2005-07-29 07:42:10 +00:00
jmg
df7e52dd3d
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
sobomax
7590204277
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
jhb
cf15cbb1b6
- 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
hmp
9149713184
Use 'manual page' instead of 'man page' for consistency.
...
Approved by: re (hrs)
2005-06-30 13:18:15 +00:00
ru
38fc91ca96
Assorted markup fixes.
...
Approved by: re
2005-06-15 19:04:04 +00:00
rodrigc
a2da5f36da
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
alc
c92da1a153
Update .Dd value.
2005-06-04 19:44:09 +00:00
alc
369cab6800
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
keramida
1345acc565
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
93318a5e79
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
trhodes
98afb7c0a2
Fix a few markup nits in previous commit.
...
Noticed by: ru, who else? :)
2005-02-25 00:40:46 +00:00
trhodes
9b55c7654a
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
csjp
a8e1dad15a
-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
trhodes
31981a764b
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
ru
136924cea4
Expand contractions.
2005-02-15 09:27:00 +00:00
ru
6b6b8c04f6
Expand contractions.
2005-02-13 23:45:54 +00:00
ru
1541af42f1
Expand *n't contractions.
2005-02-13 22:25:33 +00:00
cperciva
7294dae01f
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
ru
114ea39c76
Fixed the misplaced $FreeBSD$.
2005-02-09 18:07:17 +00:00
keramida
bfbb7511c4
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
ru
b8a9faaaa3
Fixed punctuation in xrefs.
2005-01-21 20:48:00 +00:00
ru
ed72feddcb
Sort sections.
2005-01-20 09:17:07 +00:00
ru
d26afd541d
Eliminate macro calls inside literal displays.
2005-01-15 12:28:01 +00:00
ru
5384a04b6a
Scheduled mdoc(7) sweep.
2005-01-11 20:50:51 +00:00
trhodes
2aa46459ee
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
keramida
9992d6428f
``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
keramida
1a7818d0d2
Punctuation marks should be separate arguments in groff macros.
...
Noticed by: ru
2004-12-22 16:20:12 +00:00
keramida
592e2c4993
Use .Dv NULL when referring to NULL C pointers, instead of "nil".
2004-12-22 16:15:52 +00:00
keramida
46fa95804b
Cross reference init(8) too, instead of vaguely referring to the
...
"initialization process".
2004-12-22 15:44:21 +00:00
ru
4e1356aa93
MNT_NODEV is deprecated.
2004-11-29 09:56:12 +00:00
yar
07e57c11e7
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
yar
956c47074f
Use .Vt "struct stat" consistently.
2004-11-15 13:58:52 +00:00
yar
4d5cd8fc1a
Nitpicking on grammar.
2004-11-15 13:55:33 +00:00
yar
5c10bd5c5f
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
yar
ba23ba1ba9
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
a60695c920
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
yar
cea378a301
Reword the last change a bit, add mdoc(7) markup.
...
Discussed with: bde
2004-10-25 13:35:03 +00:00
yar
faf553262e
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
6102082486
Document EMSGSIZE return from recvmsg due to insufficient free files
...
when transfering rights (file descriptors.)
2004-10-17 07:13:34 +00:00
yar
3cb7a30757
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
yar
ada175da60
Improve mdoc(7) markup.
2004-10-16 09:46:38 +00:00
yar
4a839deb31
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
f5ef5456b3
Make less wrong for desciptions of signal handling
...
MFC in: 1 week
2004-10-08 20:40:30 +00:00