| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* catgets/gencat.c: Update copyright year.
* csu/version.c: Likewise.
* debug/catchsegv.sh: Likewise.
* debug/pcprofiledump.c: Likewise.
* debug/xtrace.sh: Likewise.
* elf/ldconfig.c: Likewise.
* elf/ldd.bash.in: Likewise.
* elf/pldd.c: Likewise.
* elf/sotruss.ksh: Likewise.
* elf/sprof.c: Likewise.
* iconv/iconv_prog.c: Likewise.
* iconv/iconvconfig.c: Likewise.
* locale/programs/locale.c: Likewise.
* locale/programs/localedef.c: Likewise.
* login/programs/pt_chown.c: Likewise.
* malloc/memusage.sh: Likewise.
* malloc/memusagestat.c: Likewise.
* malloc/mtrace.pl: Likewise.
* nscd/nscd.c: Likewise.
* nss/getent.c: Likewise.
* nss/makedb.c: Likewise.
* posix/getconf.c: Likewise.
|
| |
|
|
|
|
| |
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
|
|
|
|
|
| |
The number 134217729.0 gets used in various places in e_pow.c but
there is no explanation of what that number is. Add that explanation.
|
|
|
|
|
|
|
|
|
|
| |
2012-12-28 Andi Kleen <ak@linux.intel.com>
* pthread_rwlock_tryrdlock.c (__pthread_rwlock_tryrdlock):
* Convert
to prototype.
* pthread_rwlock_trywrlock.c (__pthread_rwlock_trywrlock):
Likewise.
|
| |
|
|
|
|
| |
Code cleanup.
|
|
|
|
| |
Code cleanup.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
libm Code cleanup.
|
|
|
|
|
|
| |
[BZ #14317]
* string/xpg-strerror.c (__xpg_strerror_r): Optimize, call
strlen only if needed.
|
|
|
|
|
|
|
| |
nptl/
* sysdeps/unix/sysv/linux/sparc/lowlevellock.h
(lll_futex_timed_wait_bitset): New macro.
|
|
|
|
| |
It's an array that stores integral float values of the offset.
|
|
|
|
| |
Code cleanup.
|
| |
|
|
|
|
|
|
| |
* version.h (RELEASE): Set to "development".
(VERSION): Set to "2.17.90".
* NEWS: Add 2.18 section.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, we would see a bad frame in the gdb backtrace output, e.g.:
(gdb) bt
#0 foo () at foo.c:5
#1 0x000000aaaab68ee8 in start_thread () from /lib/libpthread.so.0
#2 0x000000aaaad01c88 in clone () from /lib/libc.so.6
#3 0x0000000000000000 in ?? ()
With this change the bogus frame #3 is gone and we have the
same output as x86 does for the same program.
|
|
|
|
| |
* po/hr.po: Update from translation team.
|
| |
|
| |
|
|
|
|
| |
* NEWS: Mention new memcpy for MIPS.
|
| |
|
|
|
|
| |
* po/ru.po: Update from translation team.
|
| |
|
|
|
|
| |
* NEWS: Mention IFUNC testsuite enhancements.
|
|
|
|
|
| |
* po/pl.po: Update from translation team.
* po/bg.po: Likewise.
|
|
|
|
|
| |
* manual/contrib.texi (Contributors): Update entries for Hongjiu
Lu and Joseph S. Myers. Add entry for Marcus Shawcroft.
|
|
|
|
| |
* po/sv.po: Update from translation team.
|
|
|
|
| |
* po/vi.po: Update from translation team.
|
|
|
|
| |
* po/cs.po: Update from translation team.
|
|
|
|
|
|
| |
* po/de.po: Update from translation team.
* po/eo.po: Likewise.
* po/nl.po: Likewise.
|
|
|
|
| |
Resolves BZ #14246.
|
|
|
|
| |
Fixes BZ #14872.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
* include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]:
Change to -1.
|
|
|
|
| |
* po/libc.pot: Update.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Seen in, e.g. ports/sysdeps/alpha/soft-fp/ots_mul.c.
The problem here is we have a switch on the class of X*Y, followed by
a switch on the class of R. The exponent field of R really is not set
by the first switch for NaN outputs, because we know it's not going to
be used. The compiler is not smart enough to see through this.
By pulling the exponent computation out of the NORMAL*NORMAL path, we
will not be pessimizing the most common case, while still providing an
arbitrary value to satisfy the compiler.
|
|
|
|
|
|
|
|
|
|
| |
In bdd7898a58bd76ac3b411a4931ff3f9e77eabe6a we added self-definitions
of __isnan and friends in order to indicate specialized architecture
support, and avoid redefinitions within various generic math_private.h.
There is no generic math_private.h that concerns ldbl-128, and while
we provide __isnanl in the alpha math_private.h there's no need to
protect the function against redefinition.
|
|
|
|
|
|
|
|
|
|
| |
In bdd7898a58bd76ac3b411a4931ff3f9e77eabe6a we added self-definitions
of __isnan and friends in order to indicate specialized architecture
support, and avoid redefinitions within various generic math_private.h.
There is no generic math_private.h that concerns ldbl-128, and while
we provide __isnanl in the alpha math_private.h there's no need to
protect the function against redefinition.
|
| |
|
| |
|