Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/osf1 translate EAGAIN/EWOULDBLOCK properly



details:   https://anonhg.NetBSD.org/src/rev/781f248f1fcd
branches:  trunk
changeset: 472234:781f248f1fcd
user:      cgd <cgd%NetBSD.org@localhost>
date:      Mon Apr 26 01:16:04 1999 +0000

description:
translate EAGAIN/EWOULDBLOCK properly

diffstat:

 sys/compat/osf1/osf1_errno.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r a99689727d5f -r 781f248f1fcd sys/compat/osf1/osf1_errno.c
--- a/sys/compat/osf1/osf1_errno.c      Mon Apr 26 01:04:45 1999 +0000
+++ b/sys/compat/osf1/osf1_errno.c      Mon Apr 26 01:16:04 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: osf1_errno.c,v 1.2 1999/04/24 06:58:26 cgd Exp $ */
+/* $NetBSD: osf1_errno.c,v 1.3 1999/04/26 01:16:04 cgd Exp $ */
 
 /*
  * Copyright (c) 1999 Christopher G. Demetriou.  All rights reserved.
@@ -74,7 +74,7 @@
     OSF1_EPIPE,                        /* EPIPE (32) -> 32 */
     OSF1_EDOM,                 /* EDOM (33) -> 33 */
     OSF1_ERANGE,               /* ERANGE (34) -> 34 */
-    OSF1_ENOSYS,               /* EAGAIN (35) has no equivalent */
+    OSF1_EWOULDBLOCK,          /* EAGAIN (35) -> OSF1_EWOULDBLOCK (35) */
     OSF1_EINPROGRESS,          /* EINPROGRESS (36) -> 36 */
     OSF1_EALREADY,             /* EALREADY (37) -> 37 */
     OSF1_ENOTSOCK,             /* ENOTSOCK (38) -> 38 */



Home | Main Index | Thread Index | Old Index