mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
Fix computation of inflated errlist size
This commit is contained in:
parent
50f81fd74b
commit
ff3d51ec58
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user