]> Zhao Yanbai Git Server - minix.git/commitdiff
Added EALREADY and EMSGSIZE.
authorPhilip Homburg <philip@cs.vu.nl>
Wed, 27 Jul 2005 11:43:28 +0000 (11:43 +0000)
committerPhilip Homburg <philip@cs.vu.nl>
Wed, 27 Jul 2005 11:43:28 +0000 (11:43 +0000)
include/errno.h

index 95b30969c2e82f5dadfa6614bd2ead234c8f4cb3..747fe81d9b570f6f524914cc51a7d6dc7e155bac 100755 (executable)
@@ -93,10 +93,12 @@ extern int errno;             /* place where the error numbers go */
 #define ESHUTDOWN     (_SIGN 65)  /* a write call to a shutdown connection */
 #define ENOCONN       (_SIGN 66)  /* no such connection */
 #define EAFNOSUPPORT  (_SIGN 67)  /* address family not supported */
-#define EPROTONOSUPPORT  (_SIGN 68)  /* protocol not supported by AF */
+#define EPROTONOSUPPORT (_SIGN 68) /* protocol not supported by AF */
 #define EPROTOTYPE    (_SIGN 69)  /* Protocol wrong type for socket */
 #define EINPROGRESS   (_SIGN 70)  /* Operation now in progress */
 #define EADDRNOTAVAIL (_SIGN 71)  /* Can't assign requested address */
+#define EALREADY      (_SIGN 72)  /* Connection already in progress */
+#define EMSGSIZE      (_SIGN 73)  /* Message too long */
 
 /* The following are not POSIX errors, but they can still happen. 
  * All of these are generated by the kernel and relate to message passing.