thorpej
4cc9b402ea
Remove VOP_*() references.
2005-01-02 16:48:18 +00:00
thorpej
c165c2b31d
System calls and support routines for file system extended attributes. Libc
...
version is bumped to 12.125.
From FreeBSD.
2005-01-02 16:43:26 +00:00
snj
316a956c56
Bump date for last.
2004-12-12 05:56:45 +00:00
yamt
ebf187e60c
document correct return value. PR/28571 from ITOH Yasufumi.
2004-12-12 01:09:44 +00:00
kleink
504ab89f25
Remove references to the header SIG_* are located in altogether;
...
<sys/signal.h> exposed too much implementation detail, and <signal.h>
remains the sole header referenced by this page.
2004-11-23 09:38:45 +00:00
jmmv
86ebfff7b8
Minor grammar fixes.
2004-11-21 10:45:08 +00:00
wiz
3f1cd2faeb
Bump date for FIONWRITE and FIONSPACE.
2004-11-08 16:15:42 +00:00
wrstuden
16029d56b5
Add support for FIONWRITE and FIONSPACE ioctls. FIONWRITE reports
...
the number of bytes in the send queue, and FIONSPACE reports the
number of free bytes in the send queue. These ioctls permit applications
to monitor file descriptor transmission dynamics.
In examining prior art, FIONWRITE exists with the semantics given
here. FIONSPACE is provided so that programs may easily determine how
much space is left in the send queue; they do not need to know the
send queue size.
The fact that a write may block even if there is enough space in the
send queue for it is noted in the documentation.
FIONWRITE functionality may be used to implement TIOCOUTQ for Linux
emulation - Linux extended this ioctl to sockets, even though they are
not ttys.
2004-11-06 02:03:20 +00:00
jmmv
fda2840eea
Add missing colon symbol after sentence.
2004-11-03 13:11:41 +00:00
perry
653de456c5
Note that MAP_ANON memory is zero filled.
2004-10-04 18:14:48 +00:00
pooka
f213e15f84
The values for the parameter "how" are defined in sys/signal.h, not signal.h
2004-08-25 11:56:50 +00:00
wiz
5bf3687024
Add an article.
2004-08-14 11:04:29 +00:00
jdolecek
64fbdbbf78
document timeradd() and timersub() too, as e.g. select(2) points
...
to getitimer(2) for timersub() description
use .Fn rather than .Fa for the macro names
bump date
2004-08-14 10:03:30 +00:00
mycroft
a10e4d1f3a
Cardbus -> CardBus
2004-07-03 17:36:51 +00:00
wiz
a26de71379
Do not xref ourselves; grammar fixes.
2004-06-25 15:29:25 +00:00
lha
cc333b3dd7
Add list of async-signal-safe functions
...
Approved by wiz
2004-06-13 19:17:06 +00:00
lha
bb3caff139
Expand a little bit on forks behavior in threaded programs
...
OK by nathanw and martin
2004-06-10 23:45:07 +00:00
kleink
d355352b08
Don't refer to errno as "global integer variable".
2004-06-01 16:12:51 +00:00
lukem
b8580dfae9
Put the description of "options" in a new paragraph, for consistency
2004-05-24 05:52:52 +00:00
kleink
6b3fbf5d75
IEEE Std 1003.1-2001/Cor 2-2004, item XSH/TC2/D6/5: fdatasync() shall
...
have cancellation points.
Note: we ride today's resolver-related version bumps.
2004-05-21 17:15:42 +00:00
kleink
675001e211
* Note string termination behaviour of NAME_MAX vs. PATH_MAX.
...
* Replace reference to non-existant KERN_NAME_MAX appropriately with
{NAME_MAX}.
2004-05-19 11:40:51 +00:00
wiz
59c0620d8b
Bump date for previous.
2004-05-18 14:53:47 +00:00
ragge
3a42a9c112
Update connect manpage to reflect current changes.
2004-05-18 12:21:29 +00:00
wiz
64ebeb5cbc
\- is a minus, not -.
2004-05-13 10:20:57 +00:00
wiz
339084de19
\- is a minus, not -.
2004-05-13 10:10:46 +00:00
kleink
c54a69ad5a
Like in shmget(2), elaborate on IPC_EXCL in the description.
2004-05-13 01:49:55 +00:00
kleink
2594bcf8ad
Repair sentence in previous.
2004-05-13 01:43:13 +00:00
kleink
aa87f3ef0e
* Undo rev. 1.9, most of which was either redundant, inaccurate, or wrong.
...
* Elaborate on IPC_EXCL in the description.
2004-05-13 01:39:14 +00:00
wiz
7117989465
Sort sections; use \*[Lt]\*[Gt] instead of <>.
2004-05-11 20:02:54 +00:00
kleink
58c660fd11
When using PATH_MAX in the example, make sure we include <limits.h>!
2004-05-11 17:39:36 +00:00
kleink
3bb0518901
Add an example code piece; suggested by Thomas Klausner.
2004-05-11 17:38:18 +00:00
wiz
d5286aa001
End sentence with a dot.
2004-05-11 12:29:22 +00:00
kleink
8df3999b0c
While I'm at it: add restrict qualifiers to readlink(2).
2004-05-10 22:33:08 +00:00
kleink
43b7ae77fa
POSIX-2001: Change readlink(2)'s return type from int to ssize_t.
2004-05-10 22:28:23 +00:00
yamt
609701c865
- note its typical usage.
...
- bump date.
2004-05-09 11:28:58 +00:00
kleink
681b62c2ce
POSIX-2001: Add restrict keywords to gettimeofday(2) and setitimer(2);
...
further deprecate struct timezone usage by changing `tzp' argument to
gettimeofday() to void *; align utimes(2) declaration by changing `times`
argument from struct timeval * to struct timeval[2]. From Murray
Armfield in PR standards/25331.
In due curse, reflect these changes in futimes(2), lutimes(2), and
settimeofday(2).
2004-04-27 01:12:44 +00:00
kleink
3e7f30c118
POSIX-2001: Change the `who' argument to [gs]etpriority(2) from int
...
to id_t. Partially addressing PR standards/25216 from Murray Armfield.
2004-04-25 22:18:08 +00:00
kleink
8b6d4dd0ae
Xref statvfs(5).
2004-04-21 21:25:59 +00:00
wiz
3274408555
Whitespace nits; fix a minus; remove unnecessary {}.
2004-04-21 12:18:23 +00:00
wiz
1c276b3fae
Mark up NULL, and fix a minus.
2004-04-21 12:16:00 +00:00
wiz
bb32d7ba63
Drop trailing whitespace.
2004-04-21 12:10:36 +00:00
christos
6bd1d6d4db
Replace the statfs() family of system calls with statvfs().
...
Retain binary compatibility.
2004-04-21 01:05:31 +00:00
wiz
71cdf6adc0
Fix typo in xref.
2004-04-19 11:27:03 +00:00
lukem
968e09b852
Document RLIMIT_SBSIZE.
2004-04-19 01:53:21 +00:00
pooka
12004f8f23
Pipes aren't "full-duplex byte streams", so don't compare SOCK_STREAM
...
type sockets to them.
2004-03-31 16:42:19 +00:00
drochner
66a132ee6f
sigreturn() isn't officially supported anymore; remove its manpage
...
(which was outdated anyway)
2004-03-26 21:49:35 +00:00
drochner
954d4024f6
sigreturn14 is just for compatibility, not referenced by any new code
2004-03-26 19:31:05 +00:00
wiz
5f31e2f50a
Use Aq instead of \*[Lt]\*[Gt]; \- for a minus; remove
...
superfluous comma.
2004-03-25 01:13:32 +00:00
wiz
f3fef0b660
Increase width in tables so this displays more nicely.
2004-03-24 16:14:36 +00:00
mrg
3b66f6e642
clean up my copyright
2004-03-21 05:47:44 +00:00