diff options
Diffstat (limited to 'hurd/porting/guidelines.mdwn')
-rw-r--r-- | hurd/porting/guidelines.mdwn | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hurd/porting/guidelines.mdwn b/hurd/porting/guidelines.mdwn index 07807b59..e47d4408 100644 --- a/hurd/porting/guidelines.mdwn +++ b/hurd/porting/guidelines.mdwn @@ -308,6 +308,14 @@ Not implemented, not POSIX. Try to disable the feature in the package. There is no programming interface for the parallel port on GNU/Hurd yet. +## <a name="cdrom"> <linux/cdrom.h> </a> + +Use <sys/cdrom.h> instead. + +## <a name="baud"> CBAUD </a> + +This is not actually standard; cfsetspeed, cfsetispeed, or cfsetospeed should be used instead. + ## <a name="errno"> `errno` values </a> When dealing with `errno`, you should always use the predefined error codes defined with the `E*` constants, instead of manually comparing/assigning/etc with their values. |