Fix computation of inflated errlist size

This commit is contained in:
Andreas Schwab 2012-04-06 18:53:32 +02:00
parent 50f81fd74b
commit ff3d51ec58
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2012-04-19 Andreas Schwab <schwab@linux-m68k.org>
* sysdeps/gnu/errlist-compat.awk (END): Correct computation of
ERR_MAX value.
* sysdeps/unix/sysv/linux/Versions (GLIBC_2.12): Adjust
errlist-compat value.
2012-04-18 David S. Miller <davem@davemloft.net>
* sysdeps/generic/memcopy.h (reg_char): Delete.

View File

@ -1,5 +1,5 @@
# awk script to generate errlist-compat.c
# Copyright (C) 2002, 2004, 2006 Free Software Foundation, Inc.
# Copyright (C) 2002-2012 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
@ -81,7 +81,7 @@ END {
if (highest > count) {
printf "*** errlist.c count %d inflated to %s count %d (old errno.h?)\n", \
count, highest_version, highest > "/dev/stderr";
printf "#define ERR_MAX %d\n\n", highest;
printf "#define ERR_MAX %d\n\n", highest - 1;
}
# same regardless of awk's ordering of the associative array.

View File

@ -142,7 +142,7 @@ libc {
fallocate;
}
GLIBC_2.12 {
#errlist-compat 134
#errlist-compat 135
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
ntp_gettimex;