1 # Copyright (C) 1991-1999,2002,2004,2005 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 # errno.texi contains lines like:
21 # @comment POSIX.1: Function not implemented
22 # @deftypevr Macro int ENOSYS
24 # Descriptive paragraph...
29 # Here we list the E* names that might be duplicate names for the
30 # same integer value on some systems. This causes the code below
31 # to generate ``#if defined (ALIAS) && ALIAS != ORIGINAL'' in the code,
32 # so the output does not presume that these are in fact aliases.
33 # We list here all the known potential cases on any system,
34 # so that the C source we produce will do the right thing based
35 # on the actual #define'd values it's compiled with.
36 alias
["EWOULDBLOCK"]=
"EAGAIN";
37 alias
["EDEADLOCK"] =
"EDEADLK";
38 alias
["ENOTSUP"] =
"EOPNOTSUPP";
40 print "/* This file is generated from errno.texi by errlist.awk. */"
42 print "#include <errno.h>";
43 print "#include <libintl.h>";
45 print "#ifndef ERR_REMAP";
46 print "# define ERR_REMAP(n) n";
50 print "#if !defined EMIT_ERR_MAX && !defined ERRLIST_NO_COMPAT";
51 print "# include <errlist-compat.h>";
53 print "#ifdef ERR_MAX";
54 print "# define ERRLIST_SIZE ERR_MAX + 1";
56 print "# define ERRLIST_SIZE";
59 print "const char *const _sys_errlist_internal[ERRLIST_SIZE] =";
61 print " [0] = N_(\"Success\"),"
64 $
1 ==
"@comment" && $
2 ==
"errno.h" { errnoh=
1; next }
65 errnoh ==
1 && $
1 ==
"@comment" \
69 for (i =
4; i
<=
NF; ++i
)
73 errnoh ==
2 && $
1 ==
"@deftypevr" && $
2 ==
"Macro" && $
3 ==
"int" \
75 e = $
4; errnoh
++; next;
77 errnoh ==
3 && $
1 ==
"@comment" && $
2 ==
"errno" \
81 printf "#if defined (%s) && %s != %s\n", e
, e
, alias
[e
];
83 printf "#ifdef %s\n", e
;
88 errnoh ==
4 && $
1 ==
"@end" && $
2 ==
"deftypevr" \
90 printf "/*%s */\n", desc
;
91 printf " [ERR_REMAP (%s)] = N_(\"%s\"),\n", e
, etext
;
92 printf "# if %s > ERR_MAX\n", e
;
93 print "# undef ERR_MAX";
94 printf "# define ERR_MAX %s\n", e
;
102 # This magic tag in C comments gets them copied into libc.pot.
103 desc = desc
"\nTRANS " $
0; next
109 print "#define NERR \\";
110 print " (sizeof _sys_errlist_internal / sizeof _sys_errlist_internal [0])";
111 print "const int _sys_nerr_internal = NERR;"
113 print "#if !defined NOT_IN_libc && !ERRLIST_NO_COMPAT";
114 print "# include <errlist-compat.c>";
117 print "#ifdef EMIT_ERR_MAX";
118 print "void dummy (void)"
119 print "{ asm volatile (\" @@@ %0 @@@ \" : : \"i\" (ERR_REMAP (ERR_MAX))); }"