summaryrefslogtreecommitdiff
path: root/unsorted
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2008-06-12 15:56:05 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2008-06-12 15:56:05 +0100
commitdf835e043986380221d7720b263863a38aedb207 (patch)
tree53fad5a2272ff84df5d161d3a45fd4396bc3a300 /unsorted
parent775228a56db6f28b2d4a91b7a9513b7508fe8a2a (diff)
add IOV_MAX
Diffstat (limited to 'unsorted')
-rw-r--r--unsorted/PortingIssues.mdwn4
1 files changed, 4 insertions, 0 deletions
diff --git a/unsorted/PortingIssues.mdwn b/unsorted/PortingIssues.mdwn
index 454f24eb..87d2154b 100644
--- a/unsorted/PortingIssues.mdwn
+++ b/unsorted/PortingIssues.mdwn
@@ -57,6 +57,10 @@ Every unconditionalized use of `PATH_MAX`, `MAX_PATH` or `MAXPATHLEN` is a POSIX
Same as `PATH_MAX`. There is no limit on the number of arguments.
+## <a name="IOV_MAX"> `IOV_MAX` </a>
+
+Same as `PATH_MAX`. There is no limit on the number of iovec items.
+
## <a name="MAXHOSTNAMELEN_tt_"> `MAXHOSTNAMELEN` </a>
Same as `PATH_MAX`. When you find a `gethostname()` function, which acts on a static buffer, you can replace it with Neal's [xgethostname function](http://ftp.walfield.org/pub/people/neal/xgethostname/) which returns the hostname as a dynamic buffer. For example: