ia64/xen-unstable
changeset 16438:b1324eca1cd9
[Mini-OS] Add ENOTSUP
Add missing ENOTSUP by defining it to EOPNOTSUPP like in Linux.
Signed-off-by: Samuel Thibault <samuel.thibault@citrix.com>
Add missing ENOTSUP by defining it to EOPNOTSUPP like in Linux.
Signed-off-by: Samuel Thibault <samuel.thibault@citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Fri Nov 23 16:42:23 2007 +0000 (2007-11-23) |
parents | c9c476a22036 |
children | dc9246357cdb |
files | extras/mini-os/include/errno.h |
line diff
1.1 --- a/extras/mini-os/include/errno.h Fri Nov 23 16:41:54 2007 +0000 1.2 +++ b/extras/mini-os/include/errno.h Fri Nov 23 16:42:23 2007 +0000 1.3 @@ -66,6 +66,7 @@ 1.4 #define EPROTONOSUPPORT 93 /* Protocol not supported */ 1.5 #define ESOCKTNOSUPPORT 94 /* Socket type not supported */ 1.6 #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */ 1.7 +#define ENOTSUP EOPNOTSUPP 1.8 #define EPFNOSUPPORT 96 /* Protocol family not supported */ 1.9 #define EAFNOSUPPORT 97 /* Address family not supported by protocol */ 1.10 #define EADDRINUSE 98 /* Address already in use */