From c0d9fffd58bd33e757980216d789921f9c0fa5a3 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 23 Jan 1999 13:08:38 +0000 Subject: [PATCH] 1999-01-23 Roland McGrath * sysdeps/gnu/errlist.awk: Add comment. --- sysdeps/gnu/errlist.awk | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/sysdeps/gnu/errlist.awk b/sysdeps/gnu/errlist.awk index b97f078..0616b03 100644 --- a/sysdeps/gnu/errlist.awk +++ b/sysdeps/gnu/errlist.awk @@ -25,9 +25,17 @@ # @end deftypevr BEGIN { - alias["EWOULDBLOCK"] = "EAGAIN"; - alias["EDEADLOCK"] = "EDEADLK"; - alias["ENOTSUP"] = "EOPNOTSUPP"; + + # Here we list the E* names that might be duplicate names for the + # same integer value on some systems. This causes the code below + # to generate ``#if defined (ALIAS) && ALIAS != ORIGINAL'' in the code, + # so the output does not presume that these are in fact aliases. + # We list here all the known potential cases on any system, + # so that the C source we produce will do the right thing based + # on the actual #define'd values it's compiled with. + alias["EWOULDBLOCK"]= "EAGAIN"; + alias["EDEADLOCK"] = "EDEADLK"; + alias["ENOTSUP"] = "EOPNOTSUPP"; print "/* This file is generated from errno.texi by errlist.awk. */" print ""; -- 2.7.4