diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2008-06-12 15:56:05 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2008-06-12 15:56:05 +0100 |
commit | df835e043986380221d7720b263863a38aedb207 (patch) | |
tree | 53fad5a2272ff84df5d161d3a45fd4396bc3a300 | |
parent | 775228a56db6f28b2d4a91b7a9513b7508fe8a2a (diff) |
add IOV_MAX
-rw-r--r-- | unsorted/PortingIssues.mdwn | 4 |
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: |