diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-04-20 13:39:46 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-04-20 13:39:46 +0200 |
commit | 72806e678978c271422f31a56ba7a6b349497b32 (patch) | |
tree | 1bb7ba55745a529d9cd96d1b8da2b2488ba0d703 /hurd/porting | |
parent | f3bbf9a9e0f7f5888804b44dcddbe82472a5a029 (diff) |
mention sem_init(pshared=1) too
Diffstat (limited to 'hurd/porting')
-rw-r--r-- | hurd/porting/guidelines.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/porting/guidelines.mdwn b/hurd/porting/guidelines.mdwn index 66c6ae28..cf0298d0 100644 --- a/hurd/porting/guidelines.mdwn +++ b/hurd/porting/guidelines.mdwn @@ -321,9 +321,9 @@ These are not POSIX, `sys/types.h` and `stdint.h` should be used instead. Not supported and actually very dangerous (permits userland to completely disable interruptions...). Replace with `ioperm(0, 65536, 1)`. -## <a name="iopl"> `semget`, `sem_open` </a> +## <a name="sem_open"> `semget`, `sem_open` </a> -Not implemented, will always fail. Use `sem_init()` instead if possible. +Not implemented yet, will always fail. Use `sem_init()` instead if possible. `sem_init` with pshared=1 is not available yet either. ## <a name="net/..."> `net/if_arp.h`, `net/ethernet.h`, etc. </a> |