| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2013-01-16 | Hide reference to mktemp in libpthread | 1 | -0/+1 | ||
| 2013-01-11 | Remove __GLIBC_HAVE_LONG_LONG. | 1 | -8/+0 | ||
| 2013-01-10 | Remove __USE_ANSI. | 1 | -3/+0 | ||
| 2013-01-02 | Update copyright notices with scripts/update-copyrights. | 17 | -18/+17 | ||
| 2012-12-24 | Update version.h and include/features.h for 2.17 release.glibc-2.17 | 1 | -1/+1 | ||
| 2012-12-07 | [BZ #14898] | 1 | -1/+1 | ||
| * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]: Change to -1. | |||||
| 2012-11-30 | * sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration... | 1 | -0/+2 | ||
| * include/rpc/svc.h: ... here. | |||||
| 2012-11-26 | Cast to __intptr_t before casting pointer to int64 | 1 | -0/+16 | ||
| 2012-11-21 | Check supported DF_1_XXX bits | 1 | -0/+6 | ||
| 2012-11-20 | Add recvmmsg and sendmmsg to the generic glibc API. | 1 | -0/+4 | ||
| 2012-11-04 | [BZ #157] Remove include/stub-tag.h for good. | 1 | -4/+0 | ||
| 2012-11-03 | Make fma use of Dekker and Knuth algorithms use round-to-nearest (bug 14796). | 1 | -0/+1 | ||
| 2012-11-02 | Compile x86 rtld with -mno-sse -mno-mmx | 1 | -0/+4 | ||
| 2012-11-02 | conformtest: Add test data for fenv.h. | 1 | -0/+2 | ||
| 2012-11-02 | Test _ISOMAC in include/sys/syslog.h. | 1 | -0/+2 | ||
| 2012-10-24 | BZ#14743: Move clock_* symbols from librt to libc. | 1 | -1/+5 | ||
| 2012-10-12 | Avoid PLT references from __get_clockfreq on powerpc | 1 | -0/+1 | ||
| 2012-10-11 | Framework to test IFUNC implementations on target | 1 | -0/+56 | ||
| 2012-10-04 | Name space hygeine for madvise. | 1 | -2/+3 | ||
| 2012-09-12 | Make strtod respect the rounding mode (bug 14518). | 1 | -0/+65 | ||
| 2012-08-18 | add attribute_hidden to __have_{sock_cloexec,pipe2,dup3 | 2 | -4/+4 | ||
| These internal knobs are not exposed as part of the public ABI, so mark them hidden to avoid generating relocations against them. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||||
| 2012-08-18 | split assume pipe2/dup3/sock_cloexec knobs | 1 | -5/+2 | ||
| We can't assume sock_cloexec and pipe2 are bound together as the former defines are found in glibc only while the latter are a combo of kernel headers and glibc. So if we do a runtime detection of SOCK_CLOEXEC, but pipe2() is a stub inside of glibc, we hit a problem. For example: main() { getgrnam("portage"); if (!popen("ls", "r")) perror("popen()"); } getgrnam() will detect that the kernel supports SOCK_CLOEXEC and then set both __have_sock_cloexec and __have_pipe2 to true. But if glibc was built against older kernel headers where __NR_pipe2 does not exist, glibc will have a ENOSYS stub for it. So popen() will always fail as glibc assumes pipe2() works. While this isn't too much of an issue for some arches as they added the functionality to the kernel at the same time, not all arches are that lucky. Since the code already has dedicated names for each feature, delete the defines wiring these three features together and make each one a proper dedicated knob. We've been carrying this in Gentoo since glibc-2.9. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||||
| 2012-08-17 | Split sys/param.h out into common file and sysdeps bits/param.h file. | 1 | -0/+1 | ||
| 2012-08-15 | Declare __getdirentries in internal dirent.h. | 1 | -0/+4 | ||
| 2012-08-13 | Add explicit acquire/release semantics to atomic_exchange_and_add. | 1 | -2/+16 | ||
| 2012-08-02 | Get rid of ASM_TYPE_DIRECTIVE{,_PREFIX}. | 1 | -33/+20 | ||
| 2012-07-31 | Clean up stub accept4 definition. | 1 | -2/+2 | ||
| 2012-07-30 | Fix lots of bitrot for stub configurations. | 1 | -1/+1 | ||
| 2012-07-25 | Rename __secure_getenv to secure_getenv | 1 | -1/+2 | ||
| 2012-07-10 | Get rid of ASM_GLOBAL_DIRECTIVE. | 1 | -15/+11 | ||
| 2012-06-30 | Release 2.16glibc-2.16.0 | 1 | -1/+1 | ||
| Update version.h and include/features.h for 2.16 release. | |||||
| 2012-06-22 | Fix invalid memory access in do_lookup_x. | 1 | -4/+4 | ||
| [BZ #13579] Do not free l_initfini and allow it to be reused on subsequent dl_open calls for the same library. This fixes the invalid memory access in do_lookup_x when the previously free'd l_initfini was accessed through l_searchlist when a library had been opened for the second time. | |||||
| 2012-06-01 | Remove use of INTDEF/INTUSE in stdio-common | 1 | -0/+1 | ||
| 2012-05-31 | Remove use of INTUSE/INTDEF in misc. | 1 | -12/+3 | ||
| 2012-05-31 | Remove use of INTDEF/INTUSE in socket | 1 | -13/+3 | ||
| 2012-05-30 | Convert WORDSIZE[32|64]/ld entries to abi-variants | 1 | -12/+0 | ||
| 2012-05-25 | Add --enable-systemtap configuration to define static probe points. | 1 | -0/+80 | ||
| 2012-05-24 | Remove use of INTDEF/INTUSE in intl | 2 | -15/+2 | ||
| 2012-05-24 | Remove use of INTDEF/INTUSE in libio | 3 | -7/+9 | ||
| 2012-05-24 | Switch gettimeofday from INTUSE to libc_hidden_proto. | 1 | -7/+2 | ||
| 2012-05-21 | Fix sunrpc static library | 1 | -0/+10 | ||
| * include/shlib-compat.h (libc_sunrpc_symbol): New macro. * sunrpc/svc_simple.c: Use it for registerrpc. * sunrpc/xcrypt.c: Use it for passwd2des. | |||||
| 2012-05-16 | Update __STDC_ISO_10646__. | 1 | -2/+3 | ||
| 2012-05-10 | Hurd: hidden_nolink macro for NO_HIDDEN case. | 1 | -2/+2 | ||
| 2012-05-10 | Hurd: dup3 | 1 | -1/+2 | ||
| 2012-05-10 | Hurd: accept4 | 1 | -0/+3 | ||
| 2012-05-10 | Make sunrpc code usable again | 1 | -1/+6 | ||
| New configure option --enable-obsolete-rpc makes the deprecated RPC headers and functions available at compile time as they were before version 2.14. This option will be removed at some time in the future after the TI-RPC library becomes fully sufficient for the needs of existing applications. | |||||
| 2012-05-10 | Define __STDC_NO_THREADS__. | 1 | -0/+3 | ||
| 2012-05-08 | Warn if user requests __FORTIFY_SOURCE but it is disabled | 1 | -4/+8 | ||
| [BZ #13979] * include/features.h: Warn if user requests __FORTIFY_SOURCE checking but the checks are disabled for any reason. | |||||
| 2012-04-29 | Fix attributes for fortify functions. | 1 | -1/+1 | ||
| 2012-04-17 | Resolve __vector namespace conflict with Altivec. | 1 | -4/+4 | ||
