Ulrich Drepper
b34de9ea81
Fold Linux-specific grantpt code into Unix version.
2009-06-16 07:59:09 -07:00
Ulrich Drepper
eae3208e24
Run tst-fgetwc with necessary envvar.
2009-06-16 07:48:27 -07:00
Ulrich Drepper
837dea7cf5
Optimize pt_chown.
...
Don't call chown and chmod if not necessary.
2009-06-15 22:58:21 -07:00
Ulrich Drepper
292e3abebf
Fix permission of slave device on devpts if necessary.
...
If devptr is misconfigured the slave device permission after grantpt
might not be 0620. BZ #10166
2009-06-15 22:56:51 -07:00
Ulrich Drepper
395a37e379
When iterating over CPU bitmask, don't try more than CPU_SETSIZE.
2009-06-15 21:12:57 -07:00
Arnaud Ebalard
7ed520bd85
Fix type of nd_opt_home_agent_info_preference.
2009-06-15 20:33:39 -07:00
Aurelien Jarno
c518f9a4b4
Extend getent to handle the shadow database.
...
BZ #10207
2009-06-15 17:49:35 -07:00
Joe Landers
233a182b9e
Fix memory leak when batch-reading large NIS password maps.
...
Not the whole was traversed in the function to free all buffers.
BZ #10203
2009-06-15 17:37:40 -07:00
Bruce Dubbs
4155d92633
(do_test): Use de_DE.UTF-8 as locale name.
2009-06-15 17:27:48 -07:00
Ulrich Drepper
48dcd0ba84
Preserve message printed before abort.
...
The terminal output etc is not visible in a core file. The new
libc-internal variable __abort_msg will point to a string with the
message which has been printed before the abort in case abort is
called from inside libc. BZ #10217
2009-06-15 16:17:09 -07:00
Ulrich Drepper
6355c99740
Fix computation of tzspec_len.
...
Without this it should never have worked that we can use the
embedded envvar in the timezone data files for dates after the last
matching rule.
2009-06-15 11:00:08 -07:00
Akinori Hattori
29143408ae
Handle leap seconds even if no DST rule exists.
...
This fixes BZ #10211 .
2009-06-15 10:54:26 -07:00
Ulrich Drepper
5fb55a68c1
Update from tzcode2009i.
2009-06-15 08:49:18 -07:00
Ulrich Drepper
a468a1d4a9
Update timezone data from tzdata2009i.
2009-06-15 08:39:40 -07:00
Jakub Jelinek
0212596218
libc part of prelink IFUNC support.
...
The dl-lookup.c changes are needed for prelink (support in prelink
checked into SVN, tested for both i?86 and x86-64), dl-irel.h just
something I discovered by code inspection.
2009-06-15 07:46:53 -07:00
Ulrich Drepper
53c068910a
Update from translation team.
2009-06-14 18:11:09 -07:00
Ulrich Drepper
eb0b6cb6e1
Fix warnings when using <sys/select.h>.
...
gcc 4.4 is more picky. And the x86-64 version of <bits/select.h>
contained a now unnecessary asm optimization. Remove it.
2009-06-14 16:09:42 -07:00
Ulrich Drepper
bfdb73e145
Implement pthread_sigqueue.
...
The kernel from 2.3.31 on supports the rt_tgsigqueueinfo syscall.
Use it to implement the non-standard extension which, like
sigqueue, can pass additional data to the receiving thread.
2009-06-12 08:34:02 -07:00
Ulrich Drepper
310647e980
Remember we switched to single-request mode.
...
This change prevents repetition in most later calls of the resolver
in case the DNS server or the network connection is broken.
2009-06-11 10:07:33 -07:00
J.H.M. Dassen
88ea382fda
Remove comma at end of enum.
2009-06-09 07:58:02 -07:00
Ulrich Drepper
d360a0da2b
Don't premature stop parsing mode string of fopen.
2009-06-09 07:01:42 -07:00
Ulrich Drepper
b77c932329
Add SSE4.2 optimized rawmemchr implementation for x86-64.
2009-06-05 16:54:50 -07:00
Ulrich Drepper
3ab2d57a4d
Optimize x86-64 strlen for SSE4.2.
...
The SSE4.2 implementation is used in the DSO only. The patch also adds
some infrastructure to be used in similar code later one.
2009-06-05 11:32:00 -07:00
Ulrich Drepper
443caceb35
Fix build problems with old binutils.
...
Old binutils don't provide IFUNC and don't generate the section start/end
symbols we expect. At least for now only add the initializer code for
static IFUNC relocations if multi-arch support is requested.
2009-06-05 09:42:32 -07:00
Ulrich Drepper
2f3f7b9da2
More small optimizations for x86-64 strlen.
2009-06-04 16:45:35 -07:00
Ulrich Drepper
747785f2b3
Tiny strlen for x86-64 optimization.
...
I didn't remove an instruction from a previous version in the final
version.
2009-06-04 10:54:29 -07:00
H.J. Lu
2f083d7511
Test for ELF IFUNC functionality.
2009-06-03 16:21:40 -07:00
Ulrich Drepper
fbb04b35e7
Terminate correct buffer.
...
Little typo could cause additional characters to be printed.
2009-06-03 08:30:35 -07:00
Ulrich Drepper
3d5243d416
Implement execvpe.
...
There is some existing practice in other OSes and it's trivial to
implement giving the existing code. Fixes BZ #10221 .
2009-06-02 07:03:02 -07:00
Ulrich Drepper
fd96f06208
Small optimization of STT_GNU_IFUNC handling.
...
The test to call the indirect function now includes a subtest to
checked whether the symbol is defined. When coming to that point
this is almost always the case. The test for STT_GNU_IFUNC on the
other hand rarely is true. Move it to the front means we don't have
to perform the second test unless really necessary.
2009-06-01 11:49:05 -07:00
Ulrich Drepper
b7629ee33f
Better error message for invalid relocatio in static binary.
2009-06-01 11:39:24 -07:00
Ulrich Drepper
8ea2372936
Fix up sched_cpucount in x86-64.
...
Now that static executables can handle IFUNC functions don't exclude
optimization for sched_cpucount for !SHARED.
2009-05-31 23:46:42 -07:00
Ulrich Drepper
7441470835
Finish IFUNC support for x86 and x86-64.
...
Add support for the IRELAIVE relocation and IFUNC in static executables.
2009-05-31 23:45:33 -07:00
Ulrich Drepper
963cb6fcb4
Simplify CPUID value handling.
...
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.
2009-05-31 17:52:05 -07:00
Andreas Schwab
c16a054d5e
Move AC_CANONICAL_HOST before first use of $host and $build.
2009-05-31 16:54:28 -07:00
Ulrich Drepper
7f3394bdf3
Fix errno for boundary conditions in 128-bit long double.
...
Similar to the changes which went already in for the other formats,
follow POSIX rules for errno.
2009-05-29 12:00:22 -07:00
Ulrich Drepper
b8bb339f7d
Implement longjmp checking for s390.
2009-05-29 11:58:04 -07:00
Ulrich Drepper
1de0c16183
Compact cache info data structure for x86/x86-64.
...
This saves about 1.5kB in the DSO.
2009-05-29 11:53:36 -07:00
Andreas Schwab
38ae768d88
Fix errno for IBM long double.
...
After the last addition to the math test suite PPC routines haven't
been adjusted so far.
2009-05-22 08:35:15 -07:00
Andreas Schwab
0323b051be
Add ___longjmp_chk support for powerpc{32,64}.
2009-05-22 08:28:20 -07:00
Jakub Jelinek
1e1dc4e82d
Implement accept4 for more archs using socketcall.
...
So far accept4 was only supported on archs using socketcall for x86.
This patch adds support for the remaining archs.
2009-05-22 08:25:34 -07:00
Ulrich Drepper
10495c0b0a
Handle -g option for IA-64 assembler.
2009-05-21 18:54:05 -07:00
Ulrich Drepper
fa64b7f76b
Fix IA-64 memchr read-ahead.
...
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.
2009-05-21 18:47:59 -07:00
H.J. Lu
d2812fc6d2
Add ____longjmp_chk support for IA-64.
2009-05-21 18:43:45 -07:00
H.J. Lu
e7535de78f
Add missing .text directives.
...
The ____longjmp_chk functions on x86 and x86-64 were placed in .rodata.str1.1.
2009-05-21 18:38:11 -07:00
Ulrich Drepper
3533b1a6a6
Don't define __ASSUME_ACCEPT4 for IA-64.
2009-05-21 18:23:57 -07:00
Jakub Jelinek
d14eda9310
Remove __NR_accept4 definition.
...
This definition was meant to be removed before the checkin. It was
used in the development.
2009-05-21 18:16:59 -07:00
Jakub Jelinek
a2292378d0
Correct socketcall argument for accept4.
...
The header had the old name (paccept).
2009-05-21 18:15:26 -07:00
Ulrich Drepper
ab09b22159
Sun agreed to a change of the license for the RPC code to a BSD-like license.
2009-05-20 21:57:37 -07:00
Ulrich Drepper
d4ab2f2a30
Danish translation update from translation team.
2009-05-20 07:12:32 -07:00