about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Rename __secure_getenv to secure_getenvFlorian Weimer2012-07-2540-28/+446
|
* Move ldsodefs.h audit definitions to sysdeps directories.Joseph Myers2012-07-258-108/+332
|
* Revert fix to tst-pthread-getattr since it fails on sparcSiddhesh Poyarekar2012-07-252-40/+16
|
* Set up errno properly for yn.Marek Polacek2012-07-258-1/+36
|
* conformtest: Update expectations for time.h.Joseph Myers2012-07-242-3/+11
|
* configure.in <sysdeps resolving>: Correct printing Implies_before.Thomas Schwinge2012-07-233-2/+8
|
* Add missing includes.Thomas Schwinge2012-07-224-2/+7
| | | | | Follow-up to commits 38de94a5efbc3de186d6f287d666f74e5b4c8247, 76da7265320010c7a273ed99f53938c0f32d5fad.
* Document va_copy in preference to __va_copy.Joseph Myers2012-07-203-14/+24
|
* Hurd: compliance fixes for getlogin_rPino Toscano2012-07-212-2/+13
| | | | | | - make LOGIN non-static, as it would make getlogin_r no more reentrant; change its type to string_t - fail with ERANGE if NAME has not enough space for the actual login string - copy with memcpy only the chars of the string
* Hurd: compliance fixes for getgroupsPino Toscano2012-07-212-1/+7
| | | | | Fail with EINVAL when the requested number of groups is negative, or when it is positive but less than the actual number of groups.
* Hurd: provide lremovexattrPino Toscano2012-07-212-0/+38
| | | | Add an implementation of lremovexattr based on removexattr.
* Hurd: provide llistxattrPino Toscano2012-07-212-0/+38
| | | | Add an implementation of llistxattr based on listxattr.
* Hurd: sendto: do not crash when ADDR is nullPino Toscano2012-07-202-25/+45
| | | | | | | Create a new create_address_port subroutine to isolate the address port creation (for both local and remove sockets), and use it inside HURD_DPORT_USE. Also intialize APORT to MACH_PORT_NULL and make sure to always deallocate it, when not null.
* Move localplt baselines to sysdeps directories.Joseph Myers2012-07-2020-12/+60
|
* Fix tst-pthread-getattr test caseSiddhesh Poyarekar2012-07-202-12/+50
| | | | | | | | | | | | | | In some cases, the compiler would optimize out the call to allocate_and_test and thus result in a false positive for the test case. Another problem was the fact that the compiler could in some cases generate additional shifting of the stack pointer, resulting in alloca moving the stack pointer beyond what is allowed by the rlimit. Hence, accessing the stackaddr returned by pthread_getattr_np is safer than relying on the alloca'd result. Another problem is when RLIMIT may be very large, which may result in violation of other resource limits. Hence we cap the max stack size to 8M for this test.
* Split tls-macros.h in sysdeps directories.Adhemerval Zanella2012-07-194-135/+140
| | | | Split PowerPC definitions in PPC32 and PPC64 headers.
* S/390: Fix uc_link == NULL handling for makecontextAndreas Krebbel2012-07-197-20/+104
|
* S/390: Add support for STT_GNU_IFUNC symbols.Andreas Krebbel2012-07-1922-103/+1218
| | | | | | Add support for STT_GNU_IFUNC symbols and the new R_390_IRELATIVE relocation. Provide optimized version of memcpy, memset, and memcmp for z10 and z196.
* Fix comment that describes sighandler_setxidSiddhesh Poyarekar2012-07-192-1/+8
|
* Add missing CL entry.Marek Polacek2012-07-181-0/+2
|
* Remove TLS configure check for MIPS.Joseph Myers2012-07-173-147/+3
|
* Remove TLS configure check for ARM.Joseph Myers2012-07-173-61/+3
|
* Fix a few typos.Marek Polacek2012-07-181-4/+4
|
* Remove TLS configure checks.Marek Polacek2012-07-1718-873/+21
|
* tile: exit with status zero on makecontext return with NULL uc_linkChris Metcalf2012-07-172-1/+7
|
* tile: update libm test ULPsChris Metcalf2012-07-172-0/+118
|
* Move tile c++-types baselines to sysdeps directories.Chris Metcalf2012-07-174-0/+77
|
* Add c++-types information for MIPS.Joseph Myers2012-07-174-0/+210
|
* Move c++-types baselines to sysdeps directories.Joseph Myers2012-07-1721-14/+64
|
* Split tls-macros.h into sysdeps directories.Joseph Myers2012-07-1710-737/+730
|
* SH: makecontext: exit (0) if uc_link is the null pointer.Thomas Schwinge2012-07-172-1/+5
|
* x86_64: makecontext: exit (0) if uc_link is the null pointer.Thomas Schwinge2012-07-172-2/+8
|
* setcontext: Clarify termination when uc_link is the null pointer.Thomas Schwinge2012-07-173-2/+13
|
* m68k: add support for {get,make,set,swap}contextAndreas Schwab2012-07-167-0/+397
|
* Fix bug-getcontext testAndreas Schwab2012-07-162-5/+25
|
* Update from translation teamAndreas Jaeger2012-07-162-1217/+1397
|
* conformtest: Update expectations for string.h.Joseph Myers2012-07-152-3/+18
|
* Update from french translation teamAndreas Jaeger2012-07-132-2/+6
|
* Fix ynl return value with LDBL_MIN.Marek Polacek2012-07-124-3/+15
|
* Remove pre-2.4.1 Linux kernel support.Joseph Myers2012-07-128-80/+58
|
* Avoid duplicate DNS requests if answer is longer than a implementationJeroen van Bemmel2012-07-124-9/+26
| | | | | | | | | | | | | | | | limit [BZ #14307] * sysdeps/posix/getaddrinfo.c (gaih_inet): Increase the size of the temporary buffer used to invoke __gethostbyname2_r, __gethostbyaddr_r and gethostbyname4_r to make room for struct host_data / struct gaih_addrtuple. * resolv/nss_dns/dns-host.c (global scope): Move definition of implementation constants MAX_NR_ALIASES and MAX_NR_ADDRS to header file nss/nsswitch.h. * nss/nsswitch.h (global scope): Add definition of implementation constants MAX_NR_ALIASES and MAX_NR_ADDRS (moved from resolv/nss_dns/dns-host.c).
* Rewrite MIPS' atomic.h to use __atomic_* builtins.Maxim Kuvyrkov2012-07-112-43/+185
|
* Translation team update for fr.po/sv.poAndreas Jaeger2012-07-113-1239/+1391
|
* Update from translation team: fr.poAndreas Jaeger2012-07-112-1200/+1379
|
* Fix ctan, ctanh of subnormals in round-upwards mode (bug 14328).Adhemerval Zanella2012-07-114-23/+331
| | | | IBM long double fixes and POWER ulps update.
* Update sparc ULPs.David S. Miller2012-07-112-0/+453
| | | | * sysdeps/sparc/fpu/libm-test-ulps: Update.
* Fix LOG_MAKEPRI to agree with BSDAndreas Schwab2012-07-103-3/+9
|
* tile: correct typo in commentChris Metcalf2012-07-102-1/+4
|
* tile: Convert ASM_GLOBAL_DIRECTIVE to .globlChris Metcalf2012-07-102-1/+6
|
* Change ASM_GLOBAL_DIRECTIVE to .globl for ARM.Joseph Myers2012-07-102-1/+6
|