Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-10-27 | Moved guard_setup to dl-osinfo.h (used commonly by ldso and libc). Renamed ↵ | Peter S. Mazinger | |
to _dl_setup_stack_chk_guard, as in glibc. SSP requires now binutils-2.16.1 and newer. Add NOT_IN_libc/IS_IN_libc. Began using -DSHARED in uClibc_main.c, there are more candidates in there. Move back dl_protect_relro to it's earlier place. | |||
2005-10-26 | merge updates from glibc | Mike Frysinger | |
2005-10-25 | Correcrt posix_fadvise* to allow compiling | Peter S. Mazinger | |
2005-10-25 | uncomment posix_fadvise prototype since we implement it now | Mike Frysinger | |
2005-10-20 | Change in_addr_t inet_aton to int, glibc has it as int and uClibc uses it in ↵ | Peter S. Mazinger | |
addr.c also as int. Rename mylock/LOCK/UNLOCK in resolv.c to allow IMA compiling | |||
2005-10-12 | Remove /dev/erandom support, as [h]lfs does not use it in this form. | Peter S. Mazinger | |
2005-10-11 | Change __OPTIMIZE__ > 0 to defined(__OPTIMIZE__) as in glibc-2.3.5. | Peter S. Mazinger | |
2005-10-04 | Do not stub out functions for mmu-less systems. Hide all | Eric Andersen | |
prototypes for functions disabled on mmu-less systems. | |||
2005-09-27 | Should correct ppc compilation failure reported by Glauber de Oliveira ↵ | Peter S. Mazinger | |
Costa. Couldn't test it though on ppc. | |||
2005-09-23 | New ssp code using syscalls where possible. | Peter S. Mazinger | |
Moved guard_setup to __uClibc_main.c, the only place where it is called. Removed SIGKILL option, not usable with sigaction. | |||
2005-09-21 | add attribute_relro, should be unconditional, if gcc/ld supports it | Peter S. Mazinger | |
2005-09-21 | sync copyright with glibc | Mike Frysinger | |
2005-09-21 | add some more defines from binutils since our readelf uses it | Mike Frysinger | |
2005-09-21 | also symlink thread_db.h instead of duplicating it, fix the clean target, ↵ | Mike Frysinger | |
and touchup the headers target so we dont create bogus dir symlinks | |||
2005-09-21 | disable obstack_printf in header, not supported | Peter S. Mazinger | |
2005-09-21 | 'pthread.h' is not the only file that needs to be symlinked. When NPTL gets ↵ | "Steven J. Hill" | |
merged, you will need to do 'semaphore.h' and 'bits/pthreadtypes.h'. I think I have been a good little boy and keeping my NPTL changes out of mainline, so I'm going to go ahead and cross the line this once to get this change in. | |||
2005-09-21 | merge some misc stuff from glibc | Mike Frysinger | |
2005-09-21 | move misc internal definitions to a sep file to minimize differences with ↵ | Mike Frysinger | |
features.h from glibc | |||
2005-09-21 | dont duplicate pthread.h in include and libpthread subdirs, so symlink it | Mike Frysinger | |
2005-09-20 | Fix bug 370. | Joakim Tjernlund | |
2005-09-08 | grab some updates from glibc | Mike Frysinger | |
2005-08-30 | add M_PERTURB define from glibc and Frank Mehnert writes: the following ↵ | Mike Frysinger | |
patch fixes a compile problem where malloc.h was included into a C++ file | |||
2005-08-25 | add a note explaining the weird h_errno definition | Mike Frysinger | |
2005-08-18 | Hmm, things broke with vapiers update. Lets | Joakim Tjernlund | |
make it compile and let vapier worry about the rest :) | |||
2005-08-18 | import updates from glibc | Mike Frysinger | |
2005-08-15 | We do not supply a BSD style getloadavg() function | Eric Andersen | |
2005-08-10 | In Bug 364 by hassold: | Mike Frysinger | |
Configuration symbol __UCLIBC_HAS_WCHAR__ is tested as defined line 249 of features.h, whereas header bits/uClibc_Config.h, where it is (eventually) defined, is not yet included (line 267). As a consequence, symbol __STDC_ISO_10646__ is never defined, and several programs believe C libary hsa no wchar support. | |||
2005-08-09 | date: 2005/08/07 07:53:58; author: drepper; state: Exp; lines: +1 -1 | Mike Frysinger | |
(DT_ALPHA_PLTRO): Use symbolic name in DT_ALPHA_PLTRO definition. | |||
2005-07-30 | sjhill appears confused. vapier's earlier commit of string.h was broken. | Manuel Novoa III | |
But I fixed it, and tested both x86 (locale) and mipsel before I commited the fixes. Just built with gcc 4.0.1 to see if that was the cause of his problems, but x86 (locale) built fine. So revert his last change. | |||
2005-07-30 | The newly added __glibc_strerror_r function is probably fine, but the | "Steven J. Hill" | |
uClibc did not even compile or link without errors. This fixes that up. Please test more thoroughly next time. | |||
2005-07-28 | Fix string.h. Change our _susv3_strerror_r to __xpg_strerror_r for glibc | Manuel Novoa III | |
compatibility. Also change _glibc_strerror_r to __glibc_strerror_r for consistency. | |||
2005-07-02 | sync with glibc | Mike Frysinger | |
2005-07-02 | sync with glibc versions | Mike Frysinger | |
2005-07-02 | use C style comments | Mike Frysinger | |
2005-07-02 | sync with glibc | Mike Frysinger | |
2005-06-16 | Jim Ramsay writes: | Eric Andersen | |
<lack> andersee: Yes. But why does it expose the prototype for _sys_siglist but NOT provide it in the library? It should either be put into the library or taken out of the header. <lack> I just replace the prototype for _sys_siglist with '#define _sys_siglist sys_siglist' and it seemed to work. | |||
2005-05-20 | Finish up reverting NPTL | Eric Andersen | |
2005-05-14 | In order to accomodate usage of either pthreads implementation, we now | "Steven J. Hill" | |
have to create symbolic links for 'semaphore.h' and 'pthread.h' which will point to the proper pthreads directory. When we finish getting NPTL working with uClibc, perhaps we can merge them, but a first glance at the differences between the two does not make that very likely. | |||
2005-05-12 | Added new 'bits/atomic.h' for most of the architectures and the top-level ↵ | "Steven J. Hill" | |
'include/atomic.h' to add in new atomic operations for use by NPTL. There are multiple files for PowerPC and Sparc for 'atomic.h'. I will let those architecture maintainers choose the correct file. The files come from glibc in 'sysdeps/ARCH/bits'. | |||
2005-05-10 | SHMLBA is now defined by arch dependent bits/shm.h file so remove | Joakim Tjernlund | |
this one. MIPS is the only one defining SHMLBA differently. | |||
2005-05-02 | Replace IXDR_GET_LONG/IXDR_PUT_LONG so that they build with newer gcc. Note ↵ | Manuel Novoa III | |
the comment in the code. | |||
2005-04-28 | Added support for clock_getres() and clock_settime() in addition to | Peter Kjellerstedt | |
the already existing clock_gettime(). In addition they will now use the corresponding system calls if they exists, which resulted in a move to libc/sysdeps/linux/common for clock_gettime.c (it was previously located in libc/misc/time). | |||
2005-04-16 | import more updates from glibc | Mike Frysinger | |
2005-04-15 | import fixes/updates from glibc-2.3 | Mike Frysinger | |
2005-04-06 | remove pthread_atfork() prototype since SuSv3 doesnt *require* it and ↵ | Mike Frysinger | |
glibc-2.3.x has since punted it too from unistd.h | |||
2005-03-31 | Add some more SH relocation types. | Paul Mundt | |
2005-03-16 | import updates from glibc | Mike Frysinger | |
2005-02-12 | no more cvs | Mike Frysinger | |
2005-01-11 | newer linux headers define __cast__ in compiler.h so lets fake it too | Mike Frysinger | |
2005-01-11 | Patch from Paul Mundt (lethal) adding an initial librt implementation. | Eric Andersen | |
I then reworked the syscall handling and made minor cleanups. With luck I've not completely broken his patch... |