| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Add support for the IRELAIVE relocation and IFUNC in static executables.
|
|
|
|
|
|
|
| |
SO far Intel and AMD use exactly the same bits meaning the same
things in CPUID index 1. Simplify the code. Should an architecture
come along which doesn't use the same semantics then it must use a
different index value than COMMON_CPUID_INDEX_1.
|
|
|
|
| |
Hidden by previous .gitignore content.
|
| |
|
| |
|
|
|
|
|
| |
Similar to the changes which went already in for the other formats,
follow POSIX rules for errno.
|
| |
|
|
|
|
| |
This saves about 1.5kB in the DSO.
|
|
|
|
|
| |
* db-symbols.awk: Use the last field for the symbol name instead
of the 8th one.
|
| |
|
|
|
|
|
| |
After the last addition to the math test suite PPC routines haven't
been adjusted so far.
|
| |
|
|
|
|
|
| |
So far accept4 was only supported on archs using socketcall for x86.
This patch adds support for the remaining archs.
|
| |
|
| |
|
|
|
|
|
|
| |
The latest stratcliff extension exposed a bug in the IA-64 memchr which
uses non-speculative loads to prefetch data. Change the code to use
speculative loads with appropriate fixup. Fixes BZ 10162.
|
| |
|
|
|
|
| |
The ____longjmp_chk functions on x86 and x86-64 were placed in .rodata.str1.1.
|
| |
|
|
|
|
|
| |
This definition was meant to be removed before the checkin. It was
used in the development.
|
|
|
|
| |
The header had the old name (paccept).
|
| |
|
| |
|
|
|
|
| |
Following the previous changes for x86 and x86-64.
|
|
|
|
|
|
|
|
| |
There are two issues with the forced loop exit in the nscd lookup:
1. the estimate of the entry size isn't pessimistic enough for all
databases, resulting potentially is too early exits
2. the combination of 64-bit process and 32-bit nscd would lead to
rejecting valid records in the database.
|
|
|
|
|
| |
The unrelated function __libc_cleanup_routine should not be in
this file. Move it into its own file.
|
|
|
|
|
| |
Unify all three places where we enable async cancellation for
syscalls. Optimize a bit.
|
|
|
|
|
| |
We don't update the RPC sources from the original tarball anymore.
No need to ignore that directory.
|
| |
|
| |
|
|
|
|
| |
This fixes BZ #10159. The stdlib.h definition was out of date.
|
|
|
|
|
| |
The move to nscd-client.h was only needed for some interim version
of the patch. The final version doesn't need it. Undo the change.
|
|
|
|
|
| |
The patch to bound the search in the nscd caches used a wrong exit
condition. Fixed now.
|
|
|
|
|
| |
Needed to allow overwriting architectures init.c in csu and nptl
individually. Fixes BZ #9924.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
We can compute an absolute maximum for the number of elements which
can fit into the currently mapped database. Stop after that many
iterations.
|
|
|
|
|
|
|
|
| |
The nscd database mapped in processes can change at any time. We
have to be more vigilant when it comes to using that memory. Test
the data entries are valid in their entire size, don't read data
again from memory once we verified it, and make sure the trailing
pointer is not going off the deep end.
|
| |
|
| |
|
|
|
|
|
|
| |
Due to a pasto the fallocate64 interface, introduced in glibc 2.10,
isn't exported for 32-bit Linux platforms. It is too late for this
now so exported them for glibc 2.11.
|
|
|
|
|
|
|
|
| |
Because we are not shutting down the other threads first another
thread might work on a query before the process shuts down. In this
case the now uninitialized libselinux and libaudit might be used.
Just don't free the resources. It's not necessary anyway because
the process is about to terminate.
|
|
|
|
|
|
|
| |
The bits tested to decide when to delay the return when switching
off async cancel mode were wrong. Fix that. Also close a race
condition in pthread_cancel where the bit indicating the cancellation
is unconditionally set even if the cancel type might have changed.
|
| |
|
|\
| |
| |
| |
| | |
Conflicts:
ChangeLog
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
When disabling async cancellation we cannot return from the function
call if the thread is canceled. This happens when the cancel bits
have been set before async cancel is disabled but the signal hasn't
been sent/received yet. Delay for as long as necessary since
otherwise the signal might be received in an unsafe context.
|
| | |
|