diff options
| -rw-r--r-- | community.mdwn | 4 | ||||
| -rw-r--r-- | hurd/porting/guidelines.mdwn | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/community.mdwn b/community.mdwn index 761a3fc6..9bd4d52e 100644 --- a/community.mdwn +++ b/community.mdwn @@ -9,8 +9,8 @@ License|/fdl]]."]]"""]] [[!meta title="Community"]] -There is an ever expanding community of people developing and running GNU/Hurd -systems! This page tries to list all the places where we commonly hang out. +Join The Hurd! There is an ever expanding community of hackers developing and running GNU/Hurd +systems. This page tries to list all the places where we commonly hang out. --- # Online Communities diff --git a/hurd/porting/guidelines.mdwn b/hurd/porting/guidelines.mdwn index 624f7fd5..2489d1d8 100644 --- a/hurd/porting/guidelines.mdwn +++ b/hurd/porting/guidelines.mdwn @@ -156,10 +156,16 @@ allocated buffer. One can thus use: Same rationale as `PATH_MAX`. There is no limit on the number of arguments. +This limit can be simply ignored, or replaced by an arbitrary constant, there is +no restriction issue here. + ## <a name="IOV_MAX"> `IOV_MAX` </a> Same rationale as `PATH_MAX`. There is no limit on the number of iovec items. +This limit can be simply ignored, or replaced by an arbitrary constant, there is +no restriction issue here. + ## <a name="MAXHOSTNAMELEN_tt_"> `MAXHOSTNAMELEN`, `HOST_NAME_MAX` </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://walfield.org/pub/people/neal/xgethostname/) which returns the hostname as a dynamic buffer. For example: |
