Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | sys/cdefs.h: export __attribute_alloc_size__ | Mike Frysinger | 2013-02-18 | 2 | -5/+3 |
| | | | | | | | | Since we want to use this in installed headers, move it to the installed sys/cdefs.h. This requires a slight tweaking of the name (add trailing underscores). Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | unify xmalloc prototypes & friends | Mike Frysinger | 2013-02-18 | 1 | -0/+33 |
| | | | | | | | | These prototypes are duplicated in many places. Add a dedicated header for holding prototypes for program-specific functions to avoid that. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | ||||
* | C++11 thread_local destructors support | Siddhesh Poyarekar | 2013-02-18 | 2 | -0/+8 |
| | | | | | | | | | | | This feature is specifically for the C++ compiler to offload calling thread_local object destructors on thread program exit, to glibc. This is to overcome the possible complication of destructors of thread_local objects getting called after the DSO in which they're defined is unloaded by the dynamic linker. The DSO is marked as 'unloadable' if it has a constructed thread_local object and marked as 'unloadable' again when all the constructed thread_local objects defined in it are destroyed. | ||||
* | Remove __ptrvalue, __bounded and __unbounded. | Joseph Myers | 2013-02-13 | 1 | -1/+1 |
| | |||||
* | Remove redunant "warning: " prefix from stub warnings. | Roland McGrath | 2013-02-12 | 1 | -2/+1 |
| | |||||
* | Remove lots of inline keywords. | Roland McGrath | 2013-02-07 | 1 | -1/+1 |
| | |||||
* | Don't use GLIBC_PRIVATE errno outside of libraries | Andreas Schwab | 2013-02-04 | 2 | -12/+14 |
| | |||||
* | Improve link_map.l_addr comment. | Jan Kratochvil | 2013-02-02 | 1 | -1/+2 |
| | |||||
* | Fix cacos real-part inaccuracy for result real part near 0 (bug 15023). | Joseph Myers | 2013-01-17 | 1 | -1/+11 |
| | |||||
* | Hide reference to mktemp in libpthread | Andreas Schwab | 2013-01-16 | 1 | -0/+1 |
| | |||||
* | Remove __GLIBC_HAVE_LONG_LONG. | Joseph Myers | 2013-01-11 | 1 | -8/+0 |
| | |||||
* | Remove __USE_ANSI. | Joseph Myers | 2013-01-10 | 1 | -3/+0 |
| | |||||
* | Update copyright notices with scripts/update-copyrights. | Joseph Myers | 2013-01-02 | 17 | -18/+17 |
| | |||||
* | Update version.h and include/features.h for 2.17 release. glibc-2.17 | David S. Miller | 2012-12-24 | 1 | -1/+1 |
| | |||||
* | [BZ #14898] | Andreas Schwab | 2012-12-07 | 1 | -1/+1 |
| | | | | | * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]: Change to -1. | ||||
* | * sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration... | Siddhesh Poyarekar | 2012-11-30 | 1 | -0/+2 |
| | | | | * include/rpc/svc.h: ... here. | ||||
* | Cast to __intptr_t before casting pointer to int64 | H.J. Lu | 2012-11-26 | 1 | -0/+16 |
| | |||||
* | Check supported DF_1_XXX bits | H.J. Lu | 2012-11-21 | 1 | -0/+6 |
| | |||||
* | Add recvmmsg and sendmmsg to the generic glibc API. | Thomas Schwinge | 2012-11-20 | 1 | -0/+4 |
| | |||||
* | [BZ #157] Remove include/stub-tag.h for good. | Thomas Schwinge | 2012-11-04 | 1 | -4/+0 |
| | |||||
* | Make fma use of Dekker and Knuth algorithms use round-to-nearest (bug 14796). | Joseph Myers | 2012-11-03 | 1 | -0/+1 |
| | |||||
* | Compile x86 rtld with -mno-sse -mno-mmx | H.J. Lu | 2012-11-02 | 1 | -0/+4 |
| | |||||
* | conformtest: Add test data for fenv.h. | Joseph Myers | 2012-11-02 | 1 | -0/+2 |
| | |||||
* | Test _ISOMAC in include/sys/syslog.h. | Joseph Myers | 2012-11-02 | 1 | -0/+2 |
| | |||||
* | BZ#14743: Move clock_* symbols from librt to libc. | Roland McGrath | 2012-10-24 | 1 | -1/+5 |
| | |||||
* | Avoid PLT references from __get_clockfreq on powerpc | Andreas Schwab | 2012-10-12 | 1 | -0/+1 |
| | |||||
* | Framework to test IFUNC implementations on target | H.J. Lu | 2012-10-11 | 1 | -0/+56 |
| | |||||
* | Name space hygeine for madvise. | Roland McGrath | 2012-10-04 | 1 | -2/+3 |
| | |||||
* | Make strtod respect the rounding mode (bug 14518). | Joseph Myers | 2012-09-12 | 1 | -0/+65 |
| | |||||
* | add attribute_hidden to __have_{sock_cloexec,pipe2,dup3 | Mike Frysinger | 2012-08-18 | 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> | ||||
* | split assume pipe2/dup3/sock_cloexec knobs | Mike Frysinger | 2012-08-18 | 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> | ||||
* | Split sys/param.h out into common file and sysdeps bits/param.h file. | Roland McGrath | 2012-08-17 | 1 | -0/+1 |
| | |||||
* | Declare __getdirentries in internal dirent.h. | Roland McGrath | 2012-08-15 | 1 | -0/+4 |
| | |||||
* | Add explicit acquire/release semantics to atomic_exchange_and_add. | Maxim Kuvyrkov | 2012-08-13 | 1 | -2/+16 |
| | |||||
* | Get rid of ASM_TYPE_DIRECTIVE{,_PREFIX}. | Marek Polacek | 2012-08-02 | 1 | -33/+20 |
| | |||||
* | Clean up stub accept4 definition. | Roland McGrath | 2012-07-31 | 1 | -2/+2 |
| | |||||
* | Fix lots of bitrot for stub configurations. | Roland McGrath | 2012-07-30 | 1 | -1/+1 |
| | |||||
* | Rename __secure_getenv to secure_getenv | Florian Weimer | 2012-07-25 | 1 | -1/+2 |
| | |||||
* | Get rid of ASM_GLOBAL_DIRECTIVE. | Marek Polacek | 2012-07-10 | 1 | -15/+11 |
| | |||||
* | Release 2.16 glibc-2.16.0 | Carlos O'Donell | 2012-06-30 | 1 | -1/+1 |
| | | | | Update version.h and include/features.h for 2.16 release. | ||||
* | Fix invalid memory access in do_lookup_x. | Andreas Schwab | 2012-06-22 | 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. | ||||
* | Remove use of INTDEF/INTUSE in stdio-common | Andreas Schwab | 2012-06-01 | 1 | -0/+1 |
| | |||||
* | Remove use of INTUSE/INTDEF in misc. | Marek Polacek | 2012-05-31 | 1 | -12/+3 |
| | |||||
* | Remove use of INTDEF/INTUSE in socket | Andreas Schwab | 2012-05-31 | 1 | -13/+3 |
| | |||||
* | Convert WORDSIZE[32|64]/ld entries to abi-variants | H.J. Lu | 2012-05-30 | 1 | -12/+0 |
| | |||||
* | Add --enable-systemtap configuration to define static probe points. | Roland McGrath | 2012-05-25 | 1 | -0/+80 |
| | |||||
* | Remove use of INTDEF/INTUSE in intl | Andreas Schwab | 2012-05-24 | 2 | -15/+2 |
| | |||||
* | Remove use of INTDEF/INTUSE in libio | Andreas Schwab | 2012-05-24 | 3 | -7/+9 |
| | |||||
* | Switch gettimeofday from INTUSE to libc_hidden_proto. | Roland McGrath | 2012-05-24 | 1 | -7/+2 |
| | |||||
* | Fix sunrpc static library | Andreas Jaeger | 2012-05-21 | 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. |