summaryrefslogtreecommitdiff
path: root/ChangeLog.old-ports-alpha
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-12-27 14:12:05 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-12-27 14:12:05 +0000
commit963c37d5c0eb62b38f8764b23931c0dcdd497a13 (patch)
tree12a521ddf17b3e1bb26594656bbb05903c54afd0 /ChangeLog.old-ports-alpha
parent7bb5f8a836b916d6ebf7b6921b136e99cea2442d (diff)
parent3c03baca37fdcb52c3881e653ca392bba7a99c2b (diff)
Merge tag 'glibc-2.28' into baseline-2.28baseline
The GNU C Library ================= The GNU C Library version 2.28 is now available. The GNU C Library is used as *the* C library in the GNU system and in GNU/Linux systems, as well as many other systems that use Linux as the kernel. The GNU C Library is primarily designed to be a portable and high performance C library. It follows all relevant standards including ISO C11 and POSIX.1-2008. It is also internationalized and has one of the most complete internationalization interfaces known. The GNU C Library webpage is at http://www.gnu.org/software/libc/ Packages for the 2.28 release may be downloaded from: http://ftpmirror.gnu.org/libc/ http://ftp.gnu.org/gnu/libc/ The mirror list is at http://www.gnu.org/order/ftp.html NEWS for version 2.28 ===================== Major new features: * The localization data for ISO 14651 is updated to match the 2016 Edition 4 release of the standard, this matches data provided by Unicode 9.0.0. This update introduces significant improvements to the collation of Unicode characters. This release deviates slightly from the standard in that the collation element ordering for lowercase and uppercase LATIN script characters is adjusted to ensure that regular expressions with ranges like [a-z] and [A-Z] don't interleave e.g. A is not matched by [a-z]. With the update many locales have been updated to take advantage of the new collation information. The new collation information has increased the size of the compiled locale archive or binary locales. * The GNU C Library can now be compiled with support for Intel CET, AKA Intel Control-flow Enforcement Technology. When the library is built with --enable-cet, the resulting glibc is protected with indirect branch tracking (IBT) and shadow stack (SHSTK). CET-enabled glibc is compatible with all existing executables and shared libraries. This feature is currently supported on i386, x86_64 and x32 with GCC 8 and binutils 2.29 or later. Note that CET-enabled glibc requires CPUs capable of multi-byte NOPs, like x86-64 processors as well as Intel Pentium Pro or newer. NOTE: --enable-cet has been tested for i686, x86_64 and x32 on non-CET processors. --enable-cet has been tested for x86_64 and x32 on CET SDVs, but Intel CET support hasn't been validated for i686. * The GNU C Library now has correct support for ABSOLUTE symbols (SHN_ABS-relative symbols). Previously such ABSOLUTE symbols were relocated incorrectly or in some cases discarded. The GNU linker can make use of the newer semantics, but it must communicate it to the dynamic loader by setting the ELF file's identification (EI_ABIVERSION field) to indicate such support is required. * Unicode 11.0.0 Support: Character encoding, character type info, and transliteration tables are all updated to Unicode 11.0.0, using generator scripts contributed by Mike FABIAN (Red Hat). * <math.h> functions that round their results to a narrower type are added from TS 18661-1:2014 and TS 18661-3:2015: - fadd, faddl, daddl and corresponding fMaddfN, fMaddfNx, fMxaddfN and fMxaddfNx functions. - fsub, fsubl, dsubl and corresponding fMsubfN, fMsubfNx, fMxsubfN and fMxsubfNx functions. - fmul, fmull, dmull and corresponding fMmulfN, fMmulfNx, fMxmulfN and fMxmulfNx functions. - fdiv, fdivl, ddivl and corresponding fMdivfN, fMdivfNx, fMxdivfN and fMxdivfNx functions. * Two grammatical forms of month names are now supported for the following languages: Armenian, Asturian, Catalan, Czech, Kashubian, Occitan, Ossetian, Scottish Gaelic, Upper Sorbian, and Walloon. The following languages now support two grammatical forms in abbreviated month names: Catalan, Greek, and Kashubian. * Newly added locales: Lower Sorbian (dsb_DE) and Yakut (sah_RU) also include the support for two grammatical forms of month names. * Building and running on GNU/Hurd systems now works without out-of-tree patches. * The renameat2 function has been added, a variant of the renameat function which has a flags argument. If the flags are zero, the renameat2 function acts like renameat. If the flag is not zero and there is no kernel support for renameat2, the function will fail with an errno value of EINVAL. This is different from the existing gnulib function renameatu, which performs a plain rename operation in case of a RENAME_NOREPLACE flags and a non-existing destination (and therefore has a race condition that can clobber the destination inadvertently). * The statx function has been added, a variant of the fstatat64 function with an additional flags argument. If there is no direct kernel support for statx, glibc provides basic stat support based on the fstatat64 function. * IDN domain names in getaddrinfo and getnameinfo now use the system libidn2 library if installed. libidn2 version 2.0.5 or later is recommended. If libidn2 is not available, internationalized domain names are not encoded or decoded even if the AI_IDN or NI_IDN flags are passed to getaddrinfo or getnameinfo. (getaddrinfo calls with non-ASCII names and AI_IDN will fail with an encoding error.) Flags which used to change the IDN encoding and decoding behavior (AI_IDN_ALLOW_UNASSIGNED, AI_IDN_USE_STD3_ASCII_RULES, NI_IDN_ALLOW_UNASSIGNED, NI_IDN_USE_STD3_ASCII_RULES) have been deprecated. They no longer have any effect. * Parsing of dynamic string tokens in DT_RPATH, DT_RUNPATH, DT_NEEDED, DT_AUXILIARY, and DT_FILTER has been expanded to support the full range of ELF gABI expressions including such constructs as '$ORIGIN$ORIGIN' (if valid). For SUID/GUID applications the rules have been further restricted, and where in the past a dynamic string token sequence may have been interpreted as a literal string it will now cause a load failure. These load failures were always considered unspecified behaviour from the perspective of the dynamic loader, and for safety are now load errors e.g. /foo/${ORIGIN}.so in DT_NEEDED results in a load failure now. * Support for ISO C threads (ISO/IEC 9899:2011) has been added. The implementation includes all the standard functions provided by <threads.h>: - thrd_current, thrd_equal, thrd_sleep, thrd_yield, thrd_create, thrd_detach, thrd_exit, and thrd_join for thread management. - mtx_init, mtx_lock, mtx_timedlock, mtx_trylock, mtx_unlock, and mtx_destroy for mutual exclusion. - call_once for function call synchronization. - cnd_broadcast, cnd_destroy, cnd_init, cnd_signal, cnd_timedwait, and cnd_wait for conditional variables. - tss_create, tss_delete, tss_get, and tss_set for thread-local storage. Application developers must link against libpthread to use ISO C threads. Deprecated and removed features, and other changes affecting compatibility: * The nonstandard header files <libio.h> and <_G_config.h> are no longer installed. Software that was using either header should be updated to use standard <stdio.h> interfaces instead. * The stdio functions 'getc' and 'putc' are no longer defined as macros. This was never required by the C standard, and the macros just expanded to call alternative names for the same functions. If you hoped getc and putc would provide performance improvements over fgetc and fputc, instead investigate using (f)getc_unlocked and (f)putc_unlocked, and, if necessary, flockfile and funlockfile. * All stdio functions now treat end-of-file as a sticky condition. If you read from a file until EOF, and then the file is enlarged by another process, you must call clearerr or another function with the same effect (e.g. fseek, rewind) before you can read the additional data. This corrects a longstanding C99 conformance bug. It is most likely to affect programs that use stdio to read interactive input from a terminal. (Bug #1190.) * The macros 'major', 'minor', and 'makedev' are now only available from the header <sys/sysmacros.h>; not from <sys/types.h> or various other headers that happen to include <sys/types.h>. These macros are rarely used, not part of POSIX nor XSI, and their names frequently collide with user code; see https://sourceware.org/bugzilla/show_bug.cgi?id=19239 for further explanation. <sys/sysmacros.h> is a GNU extension. Portable programs that require these macros should first include <sys/types.h>, and then include <sys/sysmacros.h> if __GNU_LIBRARY__ is defined. * The tilegx*-*-linux-gnu configurations are no longer supported. * The obsolete function ustat is no longer available to newly linked binaries; the headers <ustat.h> and <sys/ustat.h> have been removed. This function has been deprecated in favor of fstatfs and statfs. * The obsolete function nfsservctl is no longer available to newly linked binaries. This function was specific to systems using the Linux kernel and could not usefully be used with the GNU C Library on systems with version 3.1 or later of the Linux kernel. * The obsolete function name llseek is no longer available to newly linked binaries. This function was specific to systems using the Linux kernel and was not declared in a header. Programs should use the lseek64 name for this function instead. * The AI_IDN_ALLOW_UNASSIGNED and NI_IDN_ALLOW_UNASSIGNED flags for the getaddrinfo and getnameinfo functions have been deprecated. The behavior previously selected by them is now always enabled. * The AI_IDN_USE_STD3_ASCII_RULES and NI_IDN_USE_STD3_ASCII_RULES flags for the getaddrinfo and getnameinfo functions have been deprecated. The STD3 restriction (rejecting '_' in host names, among other things) has been removed, for increased compatibility with non-IDN name resolution. * The fcntl function now have a Long File Support variant named fcntl64. It is added to fix some Linux Open File Description (OFD) locks usage on non LFS mode. As for others *64 functions, fcntl64 semantics are analogous with fcntl and LFS support is handled transparently. Also for Linux, the OFD locks act as a cancellation entrypoint. * The obsolete functions encrypt, encrypt_r, setkey, setkey_r, cbc_crypt, ecb_crypt, and des_setparity are no longer available to newly linked binaries, and the headers <rpc/des_crypt.h> and <rpc/rpc_des.h> are no longer installed. These functions encrypted and decrypted data with the DES block cipher, which is no longer considered secure. Software that still uses these functions should switch to a modern cryptography library, such as libgcrypt. * Reflecting the removal of the encrypt and setkey functions above, the macro _XOPEN_CRYPT is no longer defined. As a consequence, the crypt function is no longer declared unless _DEFAULT_SOURCE or _GNU_SOURCE is enabled. * The obsolete function fcrypt is no longer available to newly linked binaries. It was just another name for the standard function crypt, and it has not appeared in any header file in many years. * We have tentative plans to hand off maintenance of the passphrase-hashing library, libcrypt, to a separate development project that will, we hope, keep up better with new passphrase-hashing algorithms. We will continue to declare 'crypt' in <unistd.h>, and programs that use 'crypt' or 'crypt_r' should not need to change at all; however, distributions will need to install <crypt.h> and libcrypt from a separate project. In this release, if the configure option --disable-crypt is used, glibc will not install <crypt.h> or libcrypt, making room for the separate project's versions of these files. The plan is to make this the default behavior in a future release. Changes to build and runtime requirements: GNU make 4.0 or later is now required to build glibc. Security related changes: CVE-2016-6261, CVE-2016-6263, CVE-2017-14062: Various vulnerabilities have been fixed by removing the glibc-internal IDNA implementation and using the system-provided libidn2 library instead. Originally reported by Hanno Böck and Christian Weisgerber. CVE-2017-18269: An SSE2-based memmove implementation for the i386 architecture could corrupt memory. Reported by Max Horn. CVE-2018-11236: Very long pathname arguments to realpath function could result in an integer overflow and buffer overflow. Reported by Alexey Izbyshev. CVE-2018-11237: The mempcpy implementation for the Intel Xeon Phi architecture could write beyond the target buffer, resulting in a buffer overflow. Reported by Andreas Schwab. The following bugs are resolved with this release: [1190] stdio: fgetc()/fread() behaviour is not POSIX compliant [6889] manual: 'PWD' mentioned but not specified [13575] libc: SSIZE_MAX defined as LONG_MAX is inconsistent with ssize_t, when __WORDSIZE != 64 [13762] regex: re_search etc. should return -2 on memory exhaustion [13888] build: /tmp usage during testing [13932] math: dbl-64 pow unexpectedly slow for some inputs [14092] nptl: Support C11 threads [14095] localedata: Review / update collation data from Unicode / ISO 14651 [14508] libc: -Wformat warnings [14553] libc: Namespace pollution loff_t in sys/types.h [14890] libc: Make NT_PRFPREG canonical. [15105] libc: Extra PLT references with -Os [15512] libc: __bswap_constant_16 not compiled when -Werror -Wsign- conversion is given [16335] manual: Feature test macro documentation incomplete and out of date [16552] libc: Unify umount implementations in terms of umount2 [17082] libc: htons et al.: statement-expressions prevent use on global scope with -O1 and higher [17343] libc: Signed integer overflow in /stdlib/random_r.c [17438] localedata: pt_BR: wrong d_fmt delimiter [17662] libc: please implement binding for the new renameat2 syscall [17721] libc: __restrict defined as /* Ignore */ even in c11 [17979] libc: inconsistency between uchar.h and stdint.h [18018] dynamic-link: Additional $ORIGIN handling issues (CVE-2011-0536) [18023] libc: extend_alloca is broken (questionable pointer comparison, horrible machine code) [18124] libc: hppa: setcontext erroneously returns -1 as exit code for last constant. [18471] libc: llseek should be a compat symbol [18473] soft-fp: [powerpc-nofpu] __sqrtsf2, __sqrtdf2 should be compat symbols [18991] nss: nss_files skips large entry in database [19239] libc: Including stdlib.h ends up with macros major and minor being defined [19463] libc: linknamespace failures when compiled with -Os [19485] localedata: csb_PL: Update month translations + add yesstr/nostr [19527] locale: Normalized charset name not recognized by setlocale [19667] string: Missing Sanity Check for malloc calls in file 'testcopy.c' [19668] libc: Missing Sanity Check for malloc() in file 'tst-setcontext- fpscr.c' [19728] network: out of bounds stack read in libidn function idna_to_ascii_4i (CVE-2016-6261) [19729] network: out of bounds heap read on invalid utf-8 inputs in stringprep_utf8_nfkc_normalize (CVE-2016-6263) [19818] dynamic-link: Absolute (SHN_ABS) symbols incorrectly relocated by the base address [20079] libc: Add SHT_X86_64_UNWIND to elf.h [20251] libc: 32bit programs pass garbage in struct flock for OFD locks [20419] dynamic-link: files with large allocated notes crash in open_verify [20530] libc: bswap_16 should use __builtin_bswap16() when available [20890] dynamic-link: ldconfig: fsync the files before atomic rename [20980] manual: CFLAGS environment variable replaces vital options [21163] regex: Assertion failure in pop_fail_stack when executing a malformed regexp (CVE-2015-8985) [21234] manual: use of CFLAGS makes glibc detect no optimization [21269] dynamic-link: i386 sigaction sa_restorer handling is wrong [21313] build: Compile Error GCC 5.4.0 MIPS with -0S [21314] build: Compile Error GCC 5.2.0 MIPS with -0s [21508] locale: intl/tst-gettext failure with latest msgfmt [21547] localedata: Tibetan script collation broken (Dzongkha and Tibetan) [21812] network: getifaddrs() returns entries with ifa_name == NULL [21895] libc: ppc64 setjmp/longjmp not fully interoperable with static dlopen [21942] dynamic-link: _dl_dst_substitute incorrectly handles $ORIGIN: with AT_SECURE=1 [22241] localedata: New locale: Yakut (Sakha) locale for Russia (sah_RU) [22247] network: Integer overflow in the decode_digit function in puny_decode.c in libidn (CVE-2017-14062) [22342] nscd: NSCD not properly caching netgroup [22391] nptl: Signal function clear NPTL internal symbols inconsistently [22550] localedata: es_ES locale (and other es_* locales): collation should treat ñ as a primary different character, sync the collation for Spanish with CLDR [22638] dynamic-link: sparc: static binaries are broken if glibc is built by gcc configured with --enable-default-pie [22639] time: year 2039 bug for localtime etc. on 64-bit platforms [22644] string: memmove-sse2-unaligned on 32bit x86 produces garbage when crossing 2GB threshold (CVE-2017-18269) [22646] localedata: redundant data (LC_TIME) for es_CL, es_CU, es_EC and es_BO [22735] time: Misleading typo in time.h source comment regarding CLOCKS_PER_SECOND [22753] libc: preadv2/pwritev2 fallback code should handle offset=-1 [22761] libc: No trailing `%n' conversion specifier in FMT passed from `__assert_perror_fail ()' to `__assert_fail_base ()' [22766] libc: all glibc internal dlopen should use RTLD_NOW for robust dlopen failures [22786] libc: Stack buffer overflow in realpath() if input size is close to SSIZE_MAX (CVE-2018-11236) [22787] dynamic-link: _dl_check_caller returns false when libc is linked through an absolute DT_NEEDED path [22792] build: tcb-offsets.h dependency dropped [22797] libc: pkey_get() uses non-reserved name of argument [22807] libc: PTRACE_* constants missing for powerpc [22818] glob: posix/tst-glob_lstat_compat failure on alpha [22827] dynamic-link: RISC-V ELF64 parser mis-reads flag in ldconfig [22830] malloc: malloc_stats doesn't restore cancellation state on stderr [22848] localedata: ca_ES: update date definitions from CLDR [22862] build: _DEFAULT_SOURCE is defined even when _ISOC11_SOURCE is [22884] math: RISCV fmax/fmin handle signalling NANs incorrectly [22896] localedata: Update locale data for an_ES [22902] math: float128 test failures with GCC 8 [22918] libc: multiple common of `__nss_shadow_database' [22919] libc: sparc32: backtrace yields infinite backtrace with makecontext [22926] libc: FTBFS on powerpcspe [22932] localedata: lt_LT: Update of abbreviated month names from CLDR required [22937] localedata: Greek (el_GR, el_CY) locales actually need ab_alt_mon [22947] libc: FAIL: misc/tst-preadvwritev2 [22963] localedata: cs_CZ: Add alternative month names [22987] math: [powerpc/sparc] fdim inlines errno, exceptions handling [22996] localedata: change LC_PAPER to en_US in es_BO locale [22998] dynamic-link: execstack tests are disabled when SELinux is disabled [23005] network: Crash in __res_context_send after memory allocation failure [23007] math: strtod cannot handle -nan [23024] nss: getlogin_r is performing NSS lookups when loginid isn't set [23036] regex: regex equivalence class regression [23037] libc: initialize msg_flags to zero for sendmmsg() calls [23069] libc: sigaction broken on riscv64-linux-gnu [23094] localedata: hr_HR: wrong thousands_sep and mon_thousands_sep [23102] dynamic-link: Incorrect parsing of multiple consecutive $variable patterns in runpath entries (e.g. $ORIGIN$ORIGIN) [23137] nptl: s390: pthread_join sometimes block indefinitely (on 31bit and libc build with -Os) [23140] localedata: More languages need two forms of month names [23145] libc: _init/_fini aren't marked as hidden [23152] localedata: gd_GB: Fix typo in "May" (abbreviated) [23171] math: C++ iseqsig for long double converts arguments to double [23178] nscd: sudo will fail when it is run in concurrent with commands that changes /etc/passwd [23196] string: __mempcpy_avx512_no_vzeroupper mishandles large copies (CVE-2018-11237) [23206] dynamic-link: static-pie + dlopen breaks debugger interaction [23208] localedata: New locale - Lower Sorbian (dsb) [23233] regex: Memory leak in build_charclass_op function in file posix/regcomp.c [23236] stdio: Harden function pointers in _IO_str_fields [23250] nptl: Offset of __private_ss differs from GCC [23253] math: tgamma test suite failures on i686 with -march=x86-64 -mtune=generic -mfpmath=sse [23259] dynamic-link: Unsubstituted ${ORIGIN} remains in DT_NEEDED for AT_SECURE [23264] libc: posix_spawnp wrongly executes ENOEXEC in non compat mode [23266] nis: stringop-truncation warning with new gcc8.1 in nisplus- parser.c [23272] math: fma(INFINITY,INFIITY,0.0) should be INFINITY [23277] math: nan function should not have const attribute [23279] math: scanf and strtod wrong for some hex floating-point [23280] math: wscanf rounds wrong; wcstod is ok for negative numbers and directed rounding [23290] localedata: IBM273 is not equivalent to ISO-8859-1 [23303] build: undefined reference to symbol '__parse_hwcap_and_convert_at_platform@@GLIBC_2.23' [23307] dynamic-link: Absolute symbols whose value is zero ignored in lookup [23313] stdio: libio vtables validation and standard file object interposition [23329] libc: The __libc_freeres infrastructure is not properly run across DSO boundaries. [23349] libc: Various glibc headers no longer compatible with <linux/time.h> [23351] malloc: Remove unused code related to heap dumps and malloc checking [23363] stdio: stdio-common/tst-printf.c has non-free license [23396] regex: Regex equivalence regression in single-byte locales [23422] localedata: oc_FR: More updates of locale data [23442] build: New warning with GCC 8 [23448] libc: Out of bounds access in IBM-1390 converter [23456] libc: Wrong index_cpu_LZCNT [23458] build: tst-get-cpu-features-static isn't added to tests [23459] libc: COMMON_CPUID_INDEX_80000001 isn't populated for Intel processors [23467] dynamic-link: x86/CET: A property note parser bug Release Notes ============= https://sourceware.org/glibc/wiki/Release/2.28 Contributors ============ This release was made possible by the contributions of many people. The maintainers are grateful to everyone who has contributed changes or bug reports. These include: Adhemerval Zanella Agustina Arzille Alan Modra Alexandre Oliva Amit Pawar Andreas Schwab Andrew Senkevich Andrew Waterman Aurelien Jarno Carlos O'Donell Chung-Lin Tang DJ Delorie Daniel Alvarez David Michael Dmitry V. Levin Dragan Stanojevic - Nevidljivi Florian Weimer Flávio Cruz Francois Goichon Gabriel F. T. Gomes H.J. Lu Herman ten Brugge Hongbo Zhang Igor Gnatenko Jesse Hathaway John David Anglin Joseph Myers Leonardo Sandoval Maciej W. Rozycki Mark Wielaard Martin Sebor Michael Wolf Mike FABIAN Patrick McGehearty Patsy Franklin Paul Pluzhnikov Quentin PAGÈS Rafal Luzynski Rajalakshmi Srinivasaraghavan Raymond Nicholson Rical Jasan Richard Braun Robert Buj Rogerio Alves Samuel Thibault Sean McKean Siddhesh Poyarekar Stefan Liebler Steve Ellcey Sylvain Lesage Szabolcs Nagy Thomas Schwinge Tulio Magno Quites Machado Filho Valery Timiriliyev Vincent Chen Wilco Dijkstra Zack Weinberg Zong Li
Diffstat (limited to 'ChangeLog.old-ports-alpha')
-rw-r--r--ChangeLog.old-ports-alpha1052
1 files changed, 0 insertions, 1052 deletions
diff --git a/ChangeLog.old-ports-alpha b/ChangeLog.old-ports-alpha
deleted file mode 100644
index bedbdb48c9..0000000000
--- a/ChangeLog.old-ports-alpha
+++ /dev/null
@@ -1,1052 +0,0 @@
-This file describes changes to the machine while it was in the ports
-add-on directory. This port is no longer part of an add-on and so
-future changes to it should be listed in the top-level ChangeLog file,
-not here.
-
-
-
-2014-02-12 Richard Henderson <rth@redhat.com>
-
- * sysdeps/alpha: Move directory to ../sysdeps/alpha.
- * sysdeps/unix/alpha: Move directory to ../sysdeps/unix/alpha.
- * sysdeps/unix/sysv/linux/alpha: Move directory to
- ../sysdeps/unix/sysv/linux/alpha.
-
-2014-02-08 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/unix/sysv/linux/alpha/msgctl.c: Move to
- sysdeps/unix/sysv/linux/arm/msgctl.c and #include that file.
- * sysdeps/unix/sysv/linux/alpha/semctl.c: Move to
- sysdeps/unix/sysv/linux/arm/semctl.c and #include that file.
- * sysdeps/unix/sysv/linux/alpha/shmctl.c: Move to
- sysdeps/unix/sysv/linux/arm/shmctl.c and #include that file.
-
-2014-01-24 Richard Henderson <rth@redhat.com>
-
- * sysdeps/alpha/fpu/libm-test-ulps: Update.
-
- * sysdeps/alpha/tls-macros.h (TLS_GD): Add dependency on $gp.
- (TLS_LD, TLS_IE): Likewise.
-
-2013-12-07 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/mman.h: Use <bits/mman-linux.h>,
- dropping common values and overriding different values.
-
-2013-11-28 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/alpha/fpu/fegetround.c (fegetround): Use
- libm_hidden_def.
-
-2013-11-26 Ondřej Bílka <neleai@seznam.cz>
- * sysdeps/unix/sysv/linux/alpha/bits/ipc.h: Use __glibc_reserved instead __unused.
- * sysdeps/unix/sysv/linux/alpha/bits/msq.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/bits/sem.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/kernel_stat.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/xstatconv.c: Likewise.
-
-2013-11-16 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/rt_sigaction.S: Include a nop
- before each signal thunk.
-
-2013-10-30 Mike Frysinger <vapier@gentoo.org>
-
- * sysdeps/alpha/configure.in: Moved to ...
- * sysdeps/alpha/configure.ac: ... here.
- * sysdeps/unix/sysv/linux/alpha/configure.in: Moved to ...
- * sysdeps/unix/sysv/linux/alpha/configure.ac: ... here.
- * sysdeps/alpha/configure: Regenerated.
- * sysdeps/unix/sysv/linux/alpha/configure: Likewise.
-
-2013-10-12 Yuri Chornoivan <yurchor@ukr.net>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Fix typos.
- * sysdeps/unix/sysv/linux/alpha/nptl/vfork.S: Likewise.
-
-2013-10-01 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/alpha/sysdep.h (PTR_MANGLE): Improve conditions under
- which it is defined.
-
-2013-09-20 Andreas Schwab <schwab@linux-m68k.org>
-
- * sysdeps/alpha/alphaev67/ffs.S (__ffs): Define as hidden.
- * sysdeps/alpha/ffs.S (__ffs): Likewise.
-
-2013-09-11 Andreas Schwab <schwab@suse.de>
-
- * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (__O_TMPFILE):
- Define.
-
-2013-08-30 Ondřej Bílka <neleai@seznam.cz>
-
- * sysdeps/alpha/alphaev67/stpncpy.S: Fix then/than typos.
-
-2013-08-30 Ondřej Bílka <neleai@seznam.cz>
-
- * sysdeps/unix/sysv/linux/alpha/bits/netdb.h: Fix typos.
-
-2013-07-02 Richard Henderson <rth@redhat.com>
-
- * sysdeps/alpha/fpu/libm-test-ulps: Update.
-
-2013-06-28 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
-
- * sysdeps/alpha/dl-procinfo.h (_dl_procinfo): Add TYPE parameter
- to macro prototype for AT_HWCAP2 support.
-
-2013-06-24 Richard Henderson <rth@redhat.com>
-
- [BZ #15666]
- * sysdeps/alpha/Versions (GLIBC_2.18): Add __sqrt_finite,
- __sqrtf_finite, and __sqrtl_finite.
- * sysdeps/unix/sysv/linux/alpha/nptl/libm.abilist: Likewise.
- * sysdeps/alpha/alphaev6/fpu/e_sqrt.S: Add __sqrt_finite.
- * sysdeps/alpha/alphaev6/fpu/e_sqrtf.S: Add __sqrtf_finite.
- * sysdeps/alpha/fpu/e_sqrt.c: Add __sqrt_finite compatibility.
- * sysdeps/alpha/fpu/e_sqrtf.c: New file.
- * sysdeps/alpha/soft-fp/e_sqrtl.c: Add __sqrtl_finite.
-
-2013-06-23 Richard Henderson <rth@redhat.com>
-
- * sysdeps/alpha/fpu/libm-test-ulps: Update.
-
-2013-06-15 Siddhesh Poyarekar <siddhesh@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/libpthread.abilist: Update.
-
-2013-06-05 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/alpha/bits/atomic.h: Remove trailing whitespace.
- * sysdeps/alpha/div_libc.h: Likewise.
- * sysdeps/alpha/divq.S: Likewise.
- * sysdeps/alpha/divqu.S: Likewise.
- * sysdeps/alpha/fpu/cfloat-compat.h: Likewise.
- * sysdeps/alpha/fpu/s_roundf.c: Likewise.
- * sysdeps/alpha/fpu/s_trunc.c: Likewise.
- * sysdeps/alpha/fpu/s_truncf.c: Likewise.
- * sysdeps/alpha/ldiv.S: Likewise.
- * sysdeps/alpha/memchr.c: Likewise.
- * sysdeps/alpha/remq.S: Likewise.
- * sysdeps/alpha/remqu.S: Likewise.
- * sysdeps/alpha/stxncpy.S: Likewise.
- * sysdeps/unix/alpha/sysdep.S: Likewise.
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/kernel_stat.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/register-dump.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/syscall.S: Likewise.
-
-2013-05-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h (siginfo_t): Add
- si_trapno and si_addr_lsb to _sifields.sigfault.
- (si_trapno, si_addr_lsb): Define new macros.
- (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
-
-2013-05-22 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/alpha/fpu/libm-test-ulps: Update test names.
-
-2013-05-19 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/alpha/fpu/libm-test-ulps: Update names of sincos tests.
-
-2013-05-16 Maciej W. Rozycki <macro@codesourcery.com>
-
- [BZ #15442]
- * sysdeps/alpha/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP): New
- macro.
-
-2013-03-06 Andreas Jaeger <aj@suse.de>
-
- * sysdeps/unix/sysv/linux/alpha/bits/mman.h (MAP_HUGE_MASK)
- (MAP_HUGE_SHIFT): Define.
- * sysdeps/unix/sysv/linux/alpha/bits/msq.h (MSG_COPY): Define.
-
-2013-02-19 Richard Henderson <rth@redhat.com>
-
- [BZ #14920]
- * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h
- (FUTEX_WAIT_REQUEUE_PI): Define.
- (FUTEX_CMP_REQUEUE_PI): Likewise.
- (lll_futex_wait_requeue_pi): Likewise.
- (lll_futex_timed_wait_requeue_pi): Likewise.
- (lll_futex_cmp_requeue_pi): Likewise.
-
-2013-02-20 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/alpha/sysdep.h: Include <errno.h>.
-
-2013-02-18 Siddhesh Poyarekar <siddhesh@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Add
- __cxa_thread_atexit_impl.
-
-2013-02-14 Joseph Myers <joseph@codesourcery.com>
-
- [BZ #13550]
- * sysdeps/alpha/memchr.c: Do not include <bp-sym.h>.
- (memchr): Do not use BP_SYM in weak_alias.
-
-2013-02-13 Joseph Myers <joseph@codesourcery.com>
-
- [BZ #13550]
- * sysdeps/unix/sysv/linux/alpha/sigaction.c
- (__syscall_rt_sigaction): Do not use __unbounded in prototype.
-
-2013-02-08 Joseph Myers <joseph@codesourcery.com>
-
- [BZ #13550]
- * sysdeps/unix/sysv/linux/alpha/fdatasync.c: Don't include
- <bp-checks.h>.
- * sysdeps/unix/sysv/linux/alpha/gethostname.c: Likewise.
- (__gethostname): Don't use CHECK_N.
-
- [BZ #13550]
- * sysdeps/unix/sysv/linux/alpha/msgctl.c: Do not include
- <bp-checks.h>.
- (__new_msgctl): Do not use CHECK_1.
- * sysdeps/unix/sysv/linux/alpha/shmctl.c: Do not include
- <bp-checks.h>.
- (__new_shmctl): Do not use CHECK_1.
-
-2013-01-31 Joseph Myers <joseph@codesourcery.com>
-
- [BZ #13550]
- * sysdeps/unix/sysv/linux/alpha/semctl.c: Don't include
- <bp-checks.h> and <bp-semctl.h>.
- (__new_semctl): Don't use CHECK_SEMCTL.
-
-2013-01-08 Andreas Jaeger <aj@suse.de>
-
- [BZ# 14985]
- * sysdeps/unix/sysv/linux/alpha/bits/epoll.h (EPOLL_NONBLOCK): Remove.
-
-2013-01-02 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/alpha/Makefile: Fix copyright notice formatting.
-
- * All files with FSF copyright notices: Update copyright dates
- using scripts/update-copyrights.
-
-2013-01-02 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h
- (lll_futex_timed_wait_bitset): New.
-
-2013-01-01 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Reformat copyright
- notice.
-
-2012-12-07 Richard Henderson <rth@redhat.com>
-
- * sysdeps/alpha/Makefile [$(subdir) = math]
- (CFLAGS-s_isnan.c): New variable.
-
- * sysdeps/alpha/fpu/math_private.h (__isnanl): Remove definition.
-
-2012-11-30 Richard Henderson <rth@redhat.com>
-
- * sysdeps/alpha/fpu/libm-test-ulps: Update.
-
- * sysdeps/alpha/sotruss-lib.c: New file.
-
-2012-11-03 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/alpha/fpu/fclrexcpt.c (feclearexcept): Add
- libm_hidden_ver.
-
- [BZ #3439]
- * sysdeps/alpha/fpu/bits/fenv.h (FE_DENORMAL): Define macro to
- integer constant usable in #if and use that to give value to enum
- constant.
- (FE_INEXACT): Likewise.
- (FE_UNDERFLOW): Likewise.
- (FE_OVERFLOW): Likewise.
- (FE_DIVBYZERO): Likewise.
- (FE_INVALID): Likewise.
- (FE_ALL_EXCEPT): Likewise.
- (FE_TOWARDZERO): Likewise.
- (FE_DOWNWARD): Likewise.
- (FE_TONEAREST): Likewise.
- (FE_UPWARD): Likewise.
-
-2012-11-01 Andreas Jaeger <aj@suse.de>
-
- * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Remove all
- definitions and declarations that are provided by
- <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
-
-2012-10-30 Joseph Myers <joseph@codesourcery.com>
-
- [BZ #14047]
- * sysdeps/alpha/tininess.h: New file.
-
-2012-10-19 Roland McGrath <roland@hack.frob.com>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist
- (GLIBC_2.17): Add clock_* symbols.
-
-2012-10-09 Roland McGrath <roland@hack.frob.com>
-
- * sysdeps/alpha/configure: Regenerated.
-
-2012-10-02 Siddhesh Poyarekar <siddhesh@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Fix clone
- flag name in comment to CLONE_CHILD_CLEARTID.
-
-2012-10-01 Roland McGrath <roland@hack.frob.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/typesizes.h
- (__SWBLK_T_TYPE): Macro removed.
-
-2012-09-28 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/alpha/sysdep.h (PSEUDO_END): Merge versions and
- move $syscall_error label...
- (SYSCALL_ERROR_HANDLER): ... here.
- (SYSCALL_ERROR_FALLTHRU): New.
- (PSEUDO_PROF): Split out of ...
- (PSEUDO_PROLOGUE): ... here.
- * sysdeps/unix/sysv/linux/alpha/syscall.S (__syscall): Use
- SYSCALL_ERROR_LABEL and PSEUDO_END.
- * sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Likewise.
- Use USEPV_PROF and cfi markup.
- (thread_start): Use cfi markup and cfi_undefined on ra.
- * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h
- (PSEUDO_PROF): Remove.
- (PSEUDO): Use SYSCALL_ERROR_FALLTHRU.
-
-2012-09-13 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/setfpucw.c (__setfpucw): Rewrite
- with the assumption of being used at program startup only.
-
- * sysdeps/unix/sysv/linux/alpha/nptl/localplt.data: Add optional
- entries for _OtsConvertFloatTX, _OtsCvtQUX, _OtsCvtXQ, _OtsGtrX,
- _OtsLeqX, _OtsNintXQ.
-
- * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
-
- * sysdeps/alpha/fpu/get-rounding-mode.h: New file.
-
-2012-08-30 Richard Henderson <rth@redhat.com>
-
- * sysdeps/alpha/fpu/s_isnan.c: Define all aliases in terms of
- the original __isnan symbol.
-
-2012-08-27 Mike Frysinger <vapier@gentoo.org>
-
- [BZ #5400]
- * sysdeps/unix/sysv/linux/alpha/Makefile (CFLAGS-fdatasync.c): Define.
- * sysdeps/unix/sysv/linux/alpha/fdatasync.c: New file
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h
- (__ASSUME_FDATASYNC): Define.
-
-2012-08-16 Carlos O'Donell <carlos_odonell@mentor.com>
-
- * sysdeps/alpha/ldsodefs.h (ARCH_PLTENTER_MEMBERS)
- <alpha_gnu_pltenter>: struct La_alpha_regs is not const.
-
-2012-08-13 Richard Henderson <rth@twiddle.net>
-
- * configure.in: Don't test toolchain support for TLS or GPREL.
- * configure: Rebuild.
-
- * sysdeps/alpha/fpu/s_nearbyint.c (nearbyintl): Do compat
- with GLIBC_2_1.
-
-2012-08-08 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h
- (__ASSUME_TGKILL): Remove.
-
-2012-08-08 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h
- (__ASSUME_IEEE_RAISE_EXCEPTION): Remove.
- * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S: New file.
- * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.c: Remove.
-
- * sysdeps/unix/sysv/linux/alpha/ieee_get_fp_control.S: Use dwarf2
- cfi markup for unwind. Adjust stack early so that the normal
- syscall error path can be used.
- * sysdeps/unix/sysv/linux/alpha/ieee_set_fp_control.S: Likewise.
-
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h
- (__ASSUME_STAT64_SYSCALL): Remove.
- * sysdeps/unix/sysv/linux/alpha/fxstat.c: Remove test
- for __ASSUME_STAT64_SYSCALL.
- * sysdeps/unsx/sysv/linux/alpha/fxstatat.c: Likewise.
- * sysdeps/unsx/sysv/linux/alpha/lxstat.c: Likewise.
- * sysdeps/unsx/sysv/linux/alpha/xstat.c: Likewise.
- * sysdeps/unsx/sysv/linux/alpha/xstatconv.c: Likewise.
- * sysdeps/unsx/sysv/linux/alpha/xstatconv.h: Likewise.
-
-2012-08-07 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h
- (__ASSUME_TGKILL): Define unconditionally.
- (__ASSUME_STAT64_SYSCALL): Likewise.
- (__ASSUME_IEEE_RAISE_EXCEPTION): Likewise.
-
-2012-08-02 Roland McGrath <roland@hack.frob.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/dirent.h
- (_DIRENT_MATCHES_DIRENT64): New macro.
-
-2012-08-02 Roland McGrath <roland@hack.frob.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/typesizes.h
- (__OFF_T_MATCHES_OFF64_T): New macro.
-
-2012-08-03 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/unix/sysv/linux/alpha/configure.in
- (arch_minimum_kernel): Remove.
- * sysdeps/unix/sysv/linux/alpha/configure: Regenerated.
-
-2012-07-26 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/alpha/tst-audit.h (int_retval): Define.
-
-2012-07-26 Andreas Jaeger <aj@suse.de>
-
- * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h (siginfo_t): Add
- _sigsys.
- (si_call_addr, si_syscall, si_arch): Define new macro.
-
-2012-07-25 Florian Weimer <fweimer@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Add
- secure_getenv.
-
-2012-07-20 Joseph Myers <joseph@codesourcery.com>
-
- * data/localplt-alpha-linux-gnu.data: Move to ...
- * sysdeps/unix/sysv/linux/alpha/nptl/localplt.data: ... here.
-
-2012-07-17 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data: Move from
- ../scripts/data/c++-types-alpha-linux-gnu.data.
-
-2012-06-15 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/soft-fp/sfp-machine.h (FP_TRAPPING_EXCEPTIONS): New.
-
- * sysdeps/alpha/fpu/s_rint.c (__rint): Handle inexact regardless
- of -mieee-with-inexact.
- * sysdeps/alpha/fpu/s_rintf.c (__rintf): Likewise.
-
- [BZ #13848]
- * sysdeps/alpha/fpu/s_nearbyint.c (__nearbyint): Fix corner cases
- similar to BZ#5350.
- * sysdeps/alpha/fpu/s_nearbyintf.c (__nearbyintf): Likewise.
-
- * sysdeps/alpha/fpu/s_copysign.c (__copysign): Use builtin.
- * sysdeps/alpha/fpu/s_copysignf.c (__copysignf): Use builtin.
-
- * sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIMIT_RTTIME): New.
- (prlimit, prlimit64): New declarations.
- * sysdeps/unix/sysv/linux/alpha/bits/shm.h (SHM_EXEC): New.
- * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Use only __USE_ATFILE
- to protect UTIME_NOW and UTIME_OMIT.
-
- * sysdeps/alpha/fpu/cfloat-compat.h: Remove __GNUC_PREREQ check.
- * sysdeps/alpha/fpu/s_fabs.c (__fabs): Likewise.
- * sysdeps/alpha/fpu/s_fabsf.c (__fabsf): Likewise.
- * sysdeps/unix/sysv/linux/alpha/sysconf.c (implver): Remove.
- (amask): Remove.
- (__sysconf): Use builtins directly.
-
- * sysdeps/alpha/bits/mathdef.h (float_t): Define as float
- regardless of __GNUC__.
-
-2012-06-06 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/strncmp.S: Bound count to LONG_MAX at startup.
- Re-organize checks vs s2 end-of-count.
-
- [BZ #13718]
- * sysdeps/alpha/stxncmp.S: Bound count to LONG_MAX at startup.
- * sysdeps/alpha/alphaev6/stxncmp.S: Likewise.
-
- * sysdeps/alpha/fpu/e_sqrt.c: Include <math_private.h> before
- redefining __ieee758_sqrt.
-
- * sysdeps/alpha/alphaev6/stxcpy.S: Use cfi markup instead of
- dual ecoff procedure descriptors.
- * sysdeps/alpha/alphaev6/stxncpy.S: Likewise.
- * sysdeps/alpha/bzero.S: Likewise.
- * sysdeps/alpha/memset.S: Likewise.
- * sysdeps/alpha/stxcpy.S: Likewise.
- * sysdeps/alpha/stxncpy.S: Likewise.
- * sysdeps/unix/alpha/sysdep.h (USEPV_PROF): New.
-
- * sysdeps/alpha/_mcount.S: Move .prologue after stack alloc.
-
-2012-06-05 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/rt_sigaction.S: Use .cfi_signal_frame
- instead of a hack using extra nops.
-
- * sysdeps/unxi/alpha/getppid.S: New file.
- * sysdeps/unxi/alpha/getegid.S: New file.
- * sysdeps/unxi/alpha/geteuid.S: New file.
-
-2012-06-01 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/Makefile (CFLAGS-test-misc.c): Set -mieee-with-inexact.
-
- * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
-
-2012-05-30 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/Makefile (CFLAGS-s_fma.c): Set -mieee-with-inexact.
- (CFLAGS-s_fmaf.c): Likewise.
- * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
-
- * sysdeps/unix/sysv/linux/alpha/brk.S: Fix error path for PIC.
-
- * sysdeps/alpha/fpu/libm-test-ulps: Regenerate.
-
- * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove
- __connect_internal alias.
-
- * sysdeps/unix/sysv/linux/alpha/ioperm.c (process_cpuinfo): Use
- fgets_unlocked.
-
- * sysdeps/alpha/Implies: Include ieee754/dbl-64/wordsize-64.
-
- * sysdeps/alpha/alphaev6/fpu/e_sqrt.S: Use dynamic rounding.
- * sysdeps/alpha/alphaev6/fpu/e_sqrtf.S: Likewise.
- * sysdeps/alpha/fpu/math_private.h (__ieee754_sqrt): New.
- (__ieee754_sqrtf): New.
-
- * sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c: Replace
- _internal alias by hidden_def.
-
- * sysdeps/unix/sysv/linux/alpha/adjtime.c: Remove __ASSUME_TIMEVAL64.
- * sysdeps/unix/sysv/linux/alpha/getitimer.S: Remove file.
- * sysdeps/unix/sysv/linux/alpha/getrusage.S: Remove file.
- * sysdeps/unix/sysv/linux/alpha/gettimeofday.S: Remove file.
- * sysdeps/unix/sysv/linux/alpha/select.S: Remove file.
- * sysdeps/unix/sysv/linux/alpha/setitimer.S: Remove file.
- * sysdeps/unix/sysv/linux/alpha/settimeofday.S: Remove file.
- * sysdeps/unix/sysv/linux/alpha/utimes.S: Remove file.
- * sysdeps/unix/sysv/linux/alpha/wait4.S: Remove file.
- * sysdeps/unix/sysv/linux/alpha/syscalls.list (getitimer): New.
- (getrusage, gettimeofday, select, setitimer): New.
- (settimeofday, utimes, wait4): New.
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h: Remove
- __ASSUME_TIMEVAL64.
- * sysdeps/unix/sysv/linux/alpha/nptl/ld.abilist: Update.
- * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Update.
-
-2012-05-24 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/ld.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libBrokenLocale.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libanl.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libdl.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libm.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libnsl.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libpthread.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libresolv.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/librt.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libthread_db.abilist: New file.
- * sysdeps/unix/sysv/linux/alpha/nptl/libutil.abilist: New file.
-
- * sysdeps/alpha/ldiv.S (imaxdiv): Re-add alias.
-
- * sysdeps/unix/sysv/linux/alpha/msgctl.c: Remove __ASSUME_32BITUIDS.
- * sysdeps/unix/sysv/linux/alpha/semctl.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/shmctl.c: Likewise.
-
- * sysdeps/unix/sysv/linux/alpha/bits/mman.h (MADV_HUGEPAGE): New.
- (MADV_NOHUGEPAGE, MADV_DONTDUMP, MADV_DODUMP): New.
-
-2012-05-20 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/add_n.S: Rename from add_n.s.
- * sysdeps/alpha/addmul_1.S: Rename from addmul_1.s.
- * sysdeps/alpha/alphaev5/add_n.S: Rename from add_n.s.
- * sysdeps/alpha/alphaev5/lshift.S: Rename from lshift.s.
- * sysdeps/alpha/alphaev5/rshift.S: Rename from rshift.s.
- * sysdeps/alpha/alphaev5/sub_n.S: Rename from sub_n.s.
- * sysdeps/alpha/alphaev6/addmul_1.S: Rename from addmul_1.s.
- * sysdeps/alpha/lshift.S: Rename from lshift.s.
- * sysdeps/alpha/mul_1.S: Rename from mul_1.s.
- * sysdeps/alpha/rshift.S: Rename from rshift.s.
- * sysdeps/alpha/sub_n.S: Rename from sub_n.s.
- * sysdeps/alpha/submul_1.S: Rename from submul_1.s.
-
-2012-05-18 Richard Henderson <rth@twiddle.net>
-
- * data/localplt-alpha-linux-gnu.data: New file.
-
- * sysdeps/unix/sysv/linux/alpha/bits/typesizes.h (__FSWORD_T_TYPE,
- __SYSCALL_SLONG_TYPE, __SYSCALL_ULONG_TYPE): New.
-
-2012-04-26 Matt Turner <mattst88@gmail.com>
-
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h: Correct kernel
- version needed to define __ASSUME_ACCEPT4.
-
- * sysdeps/unix/sysv/linux/alpha/ioperm.c (process_cpuinfo): Use "c"
- and "e" in fopen.
-
- * sysdeps/unix/sysv/linux/alpha/bits/mman.h (MAP_STACK): Define.
- (MAP_HUGETLB): Likewise.
-
- * sysdeps/alpha/bits/mathdef.h: Remove __STDC__ conditionals.
- * sysdeps/unix/alpha/sysdep.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/sysdep.h: Likewise.
-
- * sysdeps/alpha/fpu/bits/fenv.h: Use const instead of __const.
- * sysdeps/unix/sysv/linux/alpha/oldglob.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/sys/acct.h: Likewise.
-
- * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_PATH): Define.
-
-2012-03-27 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/elf/configure.in: Move to ...
- * sysdeps/alpha/configure.in: ... here. Update comment.
- * sysdeps/alpha/configure: Regenerate.
- * sysdeps/alpha/elf/crti.S: Move to ...
- * sysdeps/alpha/crti.S: ... here.
- * sysdeps/alpha/elf/crtn.S: Move to ...
- * sysdeps/alpha/crtn.S: ... here.
- * sysdeps/alpha/elf/start.S: Move to ...
- * sysdeps/alpha/start.S: ... here.
-
-2012-03-21 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/hp-timing.h: Include <_itoa.h> instead
- of <stdio-common/_itoa.h>.
-
-2012-03-19 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/fpu/math_private.h: New file.
-
-2012-03-11 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/bits/socket.h: Remove file.
- * sysdeps/unix/sysv/linux/alpha/bits/socket_type.h: New file.
-
-2012-03-09 Paul Eggert <eggert@cs.ucla.edu>
-
- [BZ #13673]
- Replace FSF snail mail address with URLs, as per GNU coding standards.
-
-2012-03-04 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/ioperm.c (inline_sethae): Mark
- as always_inline.
-
-2012-03-04 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/bits/socket.h (recvmmsg): Only
- declare if __USE_GNU.
- (sendmmsg): Add declaration.
-
-2012-03-04 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Don't name the
- siginfo_t struct. Add forward declaration of pthread_attr_t;
- use it in sigevent.
- * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
- (pthread_attr_t): Add union tag to pthread_attr_t; only define
- typedef if not already defined.
-
-2012-02-21 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/bits/epoll.h: New file.
- * sysdeps/unix/sysv/linux/alpha/bits/timerfd.h: Likewise.
- * sysdeps/unix/sysv/linux/alpha/sys/epoll.h: Remove.
- * sysdeps/unix/sysv/linux/alpha/sys/timerfd.h: Likewise.
-
-2012-02-20 Andreas Schwab <schwab@linux-m68k.org>
-
- * sysdeps/unix/sysv/linux/alpha/bits/errno.h (ERFKILL, EHWPOISON):
- Define if not defined.
- * sysdeps/unix/sysv/linux/alpha/Versions: Add new errlist compat
- entry for 2.16.
-
-2012-02-20 Aurelien Jarno <aurelien@aurel32.net>
-
- * sysdeps/unix/sysv/linux/alpha/sysconf.c: Fix cache sysconf switch.
-
-2012-02-16 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/fpu/fenv_libc.h (__ieee_set_fp_control,
- __ieee_get_fp_control): Mark as hidden proto.
-
-2012-02-15 Mike Hommey <mh+reportbug@glandium.org>
-
- [BZ #11677]
- * sysdeps/unix/sysv/linux/alpha/syscall.S: Support 6th argument.
-
-2012-02-15 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/bits/signalfd.h: New file.
- * sysdeps/unix/sysv/linux/alpha/sys/signalfd.h: Remove.
-
- * sysdeps/unix/alpha/sysdep.h (syscall_promote): New.
- (inline_syscall0, inline_syscall1, inline_syscall2,
- inline_syscall3, inline_syscall4, inline_syscall5,
- inline_syscall6): Use it.
- * sysdeps/unix/sysv/linux/alpha/setregid.c: Remove.
- * sysdeps/unix/sysv/linux/alpha/setreuid.c: Remove.
- * sysdeps/unix/sysv/linux/alpha/setresgid.c: Remove.
- * sysdeps/unix/sysv/linux/alpha/setresuid.c: Remove.
-
- * sysdeps/unix/alpha/sysdep.h: Don't include <tls.h>
- [PIC] (SYSCALL_ERROR_HANDLER): Emit nothing.
- [PIC] (SYSCALL_ERROR_LABEL): Add !samegp markup.
-
- * sysdeps/alpha/dl-machine.h: Don't check USE___THREAD.
-
- * sysdeps/unix/alpha/sysdeps.S: Don't check __ELF__, USE___THREAD,
- or _LIBC_REENTRANT.
-
-2012-02-15 Richard Henderson <rth@twiddle.net>
-
- [BZ #13361]
- * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (struct file_handle): New.
- (fallocate, name_to_handle_at, open_by_handle_at): Declare.
-
-2012-02-14 Joseph Myers <joseph@codesourcery.com>
- Tom de Vries <tom@codesourcery.com>
-
- * sysdeps/alpha/preconfigure: Make setting of libc_commonpagesize and
- libc_relro_required conditional on alpha machine. Move setting of
- libc_cv_gcc_unwind_find_fde ...
- * sysdeps/unix/sysv/linux/alpha/configure.in: ... here.
-
-2012-02-13 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/unix/sysv/linux/alpha/bits/eventfd.h: New file.
- * sysdeps/unix/sysv/linux/alpha/sys/eventfd.h: Remove.
-
-2012-02-09 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/preconfigure (libc_cv_gcc_unwind_find_fde): New.
- (libc_commonpagesize, libc_relro_required): New.
-
-2012-02-08 Richard Henderson <rth@twiddle.net>
-
- * sysdeps/alpha/ldsodefs.h: New file.
- * sysdeps/alpha/tst-audit.h: New file.
- * sysdeps/alpha/tls-macros.h: New file.
-
- * sysdeps/unix/sysv/linux/alpha/getitimer.S: Don't check HAVE_ELF.
- * sysdeps/unix/sysv/linux/alpha/getrusage.S: Likewise.
- * sysdeps/unix/sysv/linux/alpha/gettimeofday.S: Likewise.
- * sysdeps/unix/sysv/linux/alpha/select.S: Likewise.
- * sysdeps/unix/sysv/linux/alpha/setitimer.S: Likewise.
- * sysdeps/unix/sysv/linux/alpha/settimeofday.S: Likewise.
- * sysdeps/unix/sysv/linux/alpha/utimes.S: Likewise.
- * sysdeps/unix/sysv/linux/alpha/wait4.S: Likewise.
-
- * sysdeps/alpha/elf/crti.S, sysdeps/alpha/elf/crtn.S: New files...
- * sysdeps/alpha/elf/initfini.c: ... split from here. Remove file.
- * sysdeps/alpha/nptl/elf/pt-initfini.c: Remove file.
-
- * sysdeps/unix/alpha/sysdep.h (INTERNAL_SYSCALL_DECL): Mark unused.
-
- * sysdeps/unix/sysv/linux/alpha/bits/stat.h (_STAT_VER_LINUX): New.
-
- * sysdeps/alpha/dl-tls.h (TLS_DTV_UNALLOCATED): New.
-
- * sysdeps/unix/sysv/linux/alpha/configure.in: New file.
- * sysdeps/unix/sysv/linux/alpha/configure: Build.
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h: Protect from
- multiple includes. Disable statfs64 entirely.
-
- * sysdeps/alpha/nptl/tls.h: Don't test HAVE_TLS_SUPPORT.
- * sysdeps/unix/alpha/sysdep.h: Don't test HAVE___THREAD.
- * sysdeps/alpha/elf/configure.in (libc_cv_alpha_tls): Error out if
- the test fails. Don't set HAVE_TLS_SUPPORT.
- * sysdeps/alpha/elf/configure: Rebuild.
-
-2012-01-07 Joseph Myers <joseph@codesourcery.com>
-
- * sysdeps/alpha/backtrace.c: Use x86_64 version of backtrace.c.
- * sysdeps/unix/sysv/linux/alpha/wordexp.c: Use sparc64 version of
- wordexp.c.
-
-2011-10-05 Andreas Schwab <schwab@redhat.com>
-
- * sysdeps/alpha/dl-machine.h (elf_machine_rela)
- (elf_machine_lazy_rel): Add parameter skip_ifunc.
-
-2011-03-28 Aurelien Jarno <aurelien@aurel32.net>
-
- * sysdeps/unix/sysv/linux/alpha/____longjmp_chk.S(____longjmp_chk):
- Fix wrong register in stack pointer comparison.
-
-2011-03-01 Aurelien Jarno <aurelien@aurel32.net>
-
- * sysdeps/alpha/fpu/feupdateenv.c (feupdateenv): Add libm_hidden_def.
- * sysdeps/alpha/fpu/ftestexcept.c (fetestexcept): Likewise.
-
-2011-02-28 Aurelien Jarno <aurelien@aurel32.net>
-
- * sysdeps/unix/sysv/linux/alpha/bits/statfs.h (struct statfs,
- struct statfs64): Add f_flags field.
-
-2011-02-28 Aurelien Jarno <aurelien@aurel32.net>
-
- * sysdeps/alpha/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
-
-2011-02-28 Aurelien Jarno <aurelien@aurel32.net>
-
- * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (F_SETPIPE_SZ,
- F_GETPIPE_SZ): Define.
-
-2010-09-26 Michael Cree <mcree@orcon.net.nz>
-
- * sysdeps/alpha/memchr.c: Include <bp-sym.h>
- (__memchr): Add casts for integer arithmetic on pointers.
-
-2010-09-23 Richard Henderson <rth@redhat.com>
-
- [BZ #12019]
- * sysdeps/alpha/alphaev6/memchr.S: Remove.
- * sysdeps/alpha/memchr.S: Remove.
- * sysdeps/alpha/memchr.c: New.
-
-2010-09-23 Richard Henderson <rth@redhat.com>
-
- [BZ #1864]
- * sysdeps/unix/sysv/linux/alpha/fstatfs64.c: New.
- * sysdeps/unix/sysv/linux/alpha/fstatvfs.c: New.
- * sysdeps/unix/sysv/linux/alpha/fstatvfs64.c: New.
- * sysdeps/unix/sysv/linux/alpha/internal_statvfs64.c: New.
- * sysdeps/unix/sysv/linux/alpha/statfs64.c: New.
- * sysdeps/unix/sysv/linux/alpha/statvfs.c: New.
- * sysdeps/unix/sysv/linux/alpha/statvfs64.c: New.
- * sysdeps/unix/sysv/linux/alpha/syscalls.list (fstatfs, statfs):
- Define without 64-bit aliases.
-
-2010-05-03 Aurelien Jarno <aurelien@aurel32.net>
-
- * sysdeps/alpha/memchr.S: Use prefetch load.
- * sysdeps/alpha/alphaev6/memchr.S: Likewise.
-
-2010-05-03 Aurelien Jarno <aurelien@aurel32.net>
-
- [BZ #6827]
- * sysdeps/alpha/dl-machine.h: Add dl-procinfo support.
- * sysdeps/alpha/dl-procinfo.c: New.
- * sysdeps/alpha/dl-procinfo.h: New.
-
-2010-05-03 Aurelien Jarno <aurelien@aurel32.net>
-
- [BZ #5350]
- * sysdeps/alpha/fpu/s_ceil.c: Fix corner cases.
- * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
- * sysdeps/alpha/fpu/s_floor.c: Likewise.
- * sysdeps/alpha/fpu/s_floorf.c: Likewise.
- * sysdeps/alpha/fpu/s_rint.c: Likewise.
- * sysdeps/alpha/fpu/s_rintf.c: Likewise.
-
-2010-05-03 GOTO Masanori <gotom@debian.or.jp>
-
- [BZ #1026]
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h: Define
- __ASSUME_STAT64_SYSCALL.
- * sysdeps/unix/sysv/linux/alpha/fxstat.c: Check
- __ASSUME_STAT64_SYSCALL.
- * sysdeps/unix/sysv/linux/alpha/fxstatat.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/lxstat.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/xstat.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/xstatconv.c: Don't define
- __libc_missing_axp_stat64 when it's not needed.
- * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise.
-
-2010-03-30 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/socket.h (MSG_WAITFORONE): New.
-
-2010-03-30 Matt Turner <mattst88@gmail.com>
-
- * sysdeps/unix/sysv/linux/alpha/kernel-features.h: New.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/____longjmp_chk.S: New.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/Versions: Update errlist-compat
- for GLIBC_2.12.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdeps/alpha/fpu/fegetenv.c: Add hidden alias.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/dl-auxv.h (__libc_alpha_cache_shape):
- Define extern here; move definition...
- * sysdeps/unix/sysv/linux/alpha/dl-sysdep.c: ... here.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/sys/user.h: Don't include asm/page.h.
- (PAGE_SHIFT, PAGE_SIZE, PAGE_MASK): Define.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (F_SETOWN_EX,
- F_GETOWN_EX, F_OWNER_TID, F_OWNER_PID, F_OWNER_PGRP,
- F_OWNER_GID, struct f_owner_ex): Define.
- (F_SETOWN, F_GETOWN): Define with XPG7.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/alpha/sysdep.h (PTR_MANGLE): Define for !PIC too.
- (PTR_DEMANGLE): Likewise.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdeps/unix/alpha/sysdep.h (INTERNAL_SYSCALL_ERROR_P,
- INTERNAL_SYSCALL_ERRNO): "Use" the "other" variable in each macro.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdep/unix/sysv/linux/alpha/creat.c: New.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdep/alpha/elf/configure.in (libc_cv_alpha_hidden_gprel)
- Adjust the test for gcc 4.5.
- * sysdep/alpha/elf/configure: Rebuild.
-
-2010-03-26 Richard Henderson <rth@redhat.com>
-
- * sysdeps/alpha/bits/atomic.h (__arch_exchange_8_int,
- __arch_exchange_16_int, __arch_exchange_32_int,
- __arch_exchange_64_int, __arch_exchange_and_add_32_int,
- __arch_exchange_and_add_64_int): Use __typeof to get the
- return type correct without warning.
-
-2010-03-23 Matt Turner <mattst88@gmail.com>
- Aurelien Jarno <aurelien@aurel32.net>
-
- * sysdeps/unix/sysv/linux/alpha/bits/socket.h: New file.
-
-2010-01-12 Matt Turner <mattst88@gmail.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Fix double-inclusion
- problem.
-
-2010-01-12 Matt Turner <mattst88@gmail.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h: Define
- SA_RESTART, SA_NODEFER and SA_RESETHAND if __USE_XOPEN2K8.
-
-2010-01-12 Matt Turner <mattst88@gmail.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Define O_DIRECTORY,
- O_NOFOLLOW, O_CLOEXEC, F_DUPFD_CLOEXEC, F_SETOWN, and F_GETOWN for
- XPG7.
- * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Enable using from
- fcntl.h.
-
-2010-01-12 Matt Turner <mattst88@gmail.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Redefine O_SYNC and
- O_DSYNC to match 2.6.33+ kernels.
-
-2009-12-02 Mike Frysinger <vapier@gentoo.org>
-
- * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Fix typo in
- include timer_gettime.c -> timer_settime.c.
-
-2009-11-23 Matt Turner <mattst88@gmail.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/stat.h: Use struct timespec
- for timestamps also if __USE_XOPEN2K8.
-
-2009-11-23 Matt Turner <mattst88@gmail.com>
-
- * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Change misleading
- names of parameters of sync_file_range.
-
-2009-11-23 Matt Turner <mattst88@gmail.com>
-
- [BZ #10972]
- * sysdeps/unix/sysv/linux/alpha/bits/mman.h: Add new MADV_*
- constants from recent kernels.
-
-2009-11-10 Matt Turner <mattst88@gmail.com>
-
- [BZ #10609]
- * sysdeps/unix/sysv/linux/alpha/fxstatat.c (__fxstatat): Fix handling
- of empty parameters for file names.
-
-2009-07-13 Aurelien Jarno <aurelien@aurel32.net>
-
- [BZ #10158]
- * sysdeps/unix/sysv/linux/alpha/getsysstats.c (GET_NPROCS_PARSER):
- Change parameters and use next_line.
-
- [BZ #10160]
- * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Define
- FUTEX_WAIT_BITSET, FUTEX_WAKE_BITSET, FUTEX_CLOCK_REALTIME and
- FUTEX_BITSET_MATCH_ANY.
-
- [BZ #10161]
- * sysdeps/unix/sysv/linux/alpha/getdents64.c: Adjust include path.
- * sysdeps/unix/sysv/linux/alpha/nptl/fork.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/nptl/sem_post.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Likewise.
- * sysdeps/unix/sysv/linux/alpha/sysconf.c: Likewise.
-
- [BZ #6507]
- * sysdeps/unix/sysv/linux/alpha/sys/procfs.h (ELF_NGREG,
- ELF_NFPREG, elf_greg_t, elf_gregset_t, elf_fpreg_t,
- elf_fpregset_t): Define. Don't include asm/elf.h.
-
-2008-11-26 Roland McGrath <roland@redhat.com>
-
- * sysdeps/unix/sysv/linux/alpha/wordexp.c: Contents moved to main
- repository's ia64 file; #include that.
- * sysdeps/unix/sysv/linux/alpha/ipc_priv.h: Contents moved to main
- repository's powerpc file; #include that.
-
-2008-11-25 Roland McGrath <roland@redhat.com>
-
- * ChangeLog.alpha: New file (this one).
- * sysdeps/alpha, sysdeps/unix/bsd/osf/alpha,
- sysdeps/unix/bsd/Attic/osf1/alpha, sysdeps/unix/sysv/linux/alpha,
- sysdeps/unix/sysv/linux/alpha/alpha, sysdeps/unix/alpha,
- sysdeps/mach/alpha, sysdeps/mach/hurd/alpha:
- Subdirectories moved here from main repository.
- * sysdeps/alpha/nptl, sysdeps/unix/sysv/linux/alpha/nptl:
- Subdirectories moved here from main repository's nptl/ subdirectory.
- * sysdeps/alpha/preconfigure: New file.
- * sysdeps/alpha/shlib-versions: New file.
-
-Local Variables:
-mode: change-log
-left-margin: 8
-fill-column: 74
-End: