X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ferrno.in.h;h=3da0728ed85837bae3bcea30f79527a804b37993;hb=23d025fefa14a3815f8b804725acfd5622d3a4ac;hp=b17a35bde4f2a3b2e999bed0935bc9cb79c69e19;hpb=3d37b264049ab3ff324634078c5e726f497e0df2;p=gnulib.git diff --git a/lib/errno.in.h b/lib/errno.in.h index b17a35bde..3da0728ed 100644 --- a/lib/errno.in.h +++ b/lib/errno.in.h @@ -1,6 +1,6 @@ /* A POSIX-like . - Copyright (C) 2008 Free Software Foundation, Inc. + Copyright (C) 2008-2009 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,7 +18,9 @@ #ifndef _GL_ERRNO_H +#if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ +#endif /* The include_next requires a split double-inclusion guard. */ #@INCLUDE_NEXT@ @NEXT_ERRNO_H@ @@ -30,13 +32,15 @@ /* On native Windows platforms, many macros are not defined. */ # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ +/* POSIX says that EAGAIN and EWOULDBLOCK may have the same value. */ +# define EWOULDBLOCK EAGAIN + /* Values >= 100 seem safe to use. */ # define ETXTBSY 100 # define GNULIB_defined_ETXTBSY 1 /* These are intentionally the same values as the WSA* error numbers, defined in . */ -# define EWOULDBLOCK 10035 # define EINPROGRESS 10036 # define EALREADY 10037 # define ENOTSOCK 10038 @@ -94,54 +98,60 @@ /* On OpenBSD 4.0 and on native Windows, the macros ENOMSG, EIDRM, ENOLINK, EPROTO, EMULTIHOP, EBADMSG, EOVERFLOW, ENOTSUP, ECANCELED are not defined. - Define them here. Values >= 128 seem safe to use. + Define them here. Values >= 2000 seem safe to use: Solaris ESTALE = 151, + HP-UX EWOULDBLOCK = 246, IRIX EDQUOT = 1133. Note: When one of these systems defines some of these macros some day, binaries will have to be recompiled so that they recognizes the new errno values from the system. */ # ifndef ENOMSG -# define ENOMSG 128 +# define ENOMSG 2000 # define GNULIB_defined_ENOMSG 1 # endif # ifndef EIDRM -# define EIDRM 129 +# define EIDRM 2001 # define GNULIB_defined_EIDRM 1 # endif # ifndef ENOLINK -# define ENOLINK 130 +# define ENOLINK 2002 # define GNULIB_defined_ENOLINK 1 # endif # ifndef EPROTO -# define EPROTO 131 +# define EPROTO 2003 # define GNULIB_defined_EPROTO 1 # endif # ifndef EMULTIHOP -# define EMULTIHOP 132 +# define EMULTIHOP 2004 # define GNULIB_defined_EMULTIHOP 1 # endif # ifndef EBADMSG -# define EBADMSG 133 +# define EBADMSG 2005 # define GNULIB_defined_EBADMSG 1 # endif # ifndef EOVERFLOW -# define EOVERFLOW 134 +# define EOVERFLOW 2006 # define GNULIB_defined_EOVERFLOW 1 # endif # ifndef ENOTSUP -# define ENOTSUP 135 +# define ENOTSUP 2007 # define GNULIB_defined_ENOTSUP 1 # endif +# ifndef ESTALE +# define ESTALE 2009 +# define GNULIB_defined_ESTALE 1 +# endif + # ifndef ECANCELED -# define ECANCELED 136 +# define ECANCELED 2008 # define GNULIB_defined_ECANCELED 1 # endif