mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Fix computation of inflated errlist size
This commit is contained in:
@ -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>
|
2012-04-18 David S. Miller <davem@davemloft.net>
|
||||||
|
|
||||||
* sysdeps/generic/memcopy.h (reg_char): Delete.
|
* sysdeps/generic/memcopy.h (reg_char): Delete.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# awk script to generate errlist-compat.c
|
# 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.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
# The GNU C Library is free software; you can redistribute it and/or
|
# The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -81,7 +81,7 @@ END {
|
|||||||
if (highest > count) {
|
if (highest > count) {
|
||||||
printf "*** errlist.c count %d inflated to %s count %d (old errno.h?)\n", \
|
printf "*** errlist.c count %d inflated to %s count %d (old errno.h?)\n", \
|
||||||
count, highest_version, highest > "/dev/stderr";
|
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.
|
# same regardless of awk's ordering of the associative array.
|
||||||
|
@ -142,7 +142,7 @@ libc {
|
|||||||
fallocate;
|
fallocate;
|
||||||
}
|
}
|
||||||
GLIBC_2.12 {
|
GLIBC_2.12 {
|
||||||
#errlist-compat 134
|
#errlist-compat 135
|
||||||
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
|
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
|
||||||
|
|
||||||
ntp_gettimex;
|
ntp_gettimex;
|
||||||
|
Reference in New Issue
Block a user