1 # awk script to generate errlist-compat.c
2 # Copyright (C) 2002, 2004, 2006 Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
5 # The GNU C Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # The GNU C Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, write to the Free
17 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 # This script takes the Versions file as input and looks for #errlist-compat
22 # magic comments, which have the form:
24 # where NNN is the number of elements in the sys_errlist for that version set.
25 # We need the awk variable `maxerr' defined to the current size of sys_errlist.
27 # If there is no magic comment matching the current size, we barf.
28 # Otherwise we generate code (errlist-compat.c) to define all the
29 # necessary compatibility symbols for older, smaller versions of sys_errlist.
32 # These two rules catch the Versions file contents.
33 NF ==
2 && $
2 ==
"{" { last_version = $
1; next }
34 $
1 ==
"#errlist-compat" {
35 # Don't process any further Versions files
39 print "*** this line seems bogus:", $
0 > "/dev/stderr";
42 version
[pos
+ 0] = cnt SUBSEP last_version
;
45 printf "*** %s #errlist-compat counts are not sorted\n", ARGV[ARGIND];
50 highest_version = last_version
;
55 if (! highest_version
) {
56 print "/* No sys_errlist/sys_nerr symbols defined on this platform. */";
62 if (highest
< count
) {
63 printf "*** errlist.c count %d vs Versions sys_errlist@%s count %d\n", \
64 count
, highest_version
, highest
> "/dev/stderr";
69 for (n =
0; n
< pos
; ++n
) {
70 split(version
[n
], t
, SUBSEP
)
72 gsub(/[^A
-Z0
-9_
]/, "_", v
);
79 print "/* This file was generated by errlist-compat.awk; DO NOT EDIT! */\n";
80 print "#include <shlib-compat.h>\n";
82 if (highest
> count
) {
83 printf "*** errlist.c count %d inflated to %s count %d (old errno.h?)\n", \
84 count
, highest_version
, highest
> "/dev/stderr";
85 printf "#define ERR_MAX %d\n\n", highest
;
91 printf "#if SHLIB_COMPAT (libc, %s, %s)\n", old
, new
;
92 printf "# include <bits/wordsize.h>\n";
93 printf "extern const char *const __sys_errlist_%s[NERR];\n", old
;
94 printf "const int __sys_nerr_%s = %d;\n", old
, n
;
95 printf "declare_symbol_alias (__sys_errlist_%s, _sys_errlist_internal,", \
97 printf " object, __WORDSIZE/8*%d)\n", n
;
98 printf "compat_symbol (libc, __sys_errlist_%s, sys_errlist, %s);\n", \
100 printf "compat_symbol (libc, __sys_nerr_%s, sys_nerr, %s);\n", old
, old
;
102 printf "extern const char *const ___sys_errlist_%s[NERR];\n", old
;
103 printf "extern const int __sys_nerr_%s;\n", old
;
104 printf "declare_symbol_alias (___sys_errlist_%s, _sys_errlist_internal,", \
106 printf " object, __WORDSIZE/8*%d)\n", n
;
107 printf "strong_alias (__sys_nerr_%s, ___sys_nerr_%s)\n", old
, old
;
108 printf "compat_symbol (libc, ___sys_errlist_%s, _sys_errlist, %s);\n", \
110 printf "compat_symbol (libc, ___sys_nerr_%s, _sys_nerr, %s);\n", old
, old
;
115 extern const char *const __sys_errlist_internal[NERR];\n\
116 extern const int __sys_nerr_internal;\n\
117 strong_alias (_sys_errlist_internal, __sys_errlist_internal)\n\
118 strong_alias (_sys_nerr_internal, __sys_nerr_internal)\n\
119 extern const char *const sys_errlist[NERR];\n\
120 versioned_symbol (libc, _sys_errlist_internal, sys_errlist, %s);\n\
121 versioned_symbol (libc, __sys_errlist_internal, _sys_errlist, %s);\n\
122 versioned_symbol (libc, _sys_nerr_internal, sys_nerr, %s);\n\
123 versioned_symbol (libc, __sys_nerr_internal, _sys_nerr, %s);\n", \
124 lastv
, lastv
, lastv
, lastv
;
127 link_warning (sys_errlist, \"\
128 `sys_errlist' is deprecated; use `strerror' or `strerror_r' instead\")\n\
129 link_warning (sys_nerr, \"\
130 `sys_nerr' is deprecated; use `strerror' or `strerror_r' instead\")";