Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-25 | Fix rpc test Makefile | Carmelo Amoroso | |
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-04-25 | Fix some sh4 specific entries | Carmelo Amoroso | |
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-04-25 | reinstate external visibility of inet_ntoa_r, | Denis Vlasenko | |
and add it to arpa/inet.h header. | |||
2008-04-24 | - fixup asm. No object-code changes | Bernhard Reutner-Fischer | |
2008-04-24 | Fix indentation of comment in AVR32 memmove assembler optimization file. | Hans-Christian Egtvedt | |
2008-04-24 | Fix whitespace damage in top level Config.in. | Hans-Christian Egtvedt | |
2008-04-24 | Fix whitespace damage in AVR32 in libc sysdeps AVR32 specific Linux files. | Hans-Christian Egtvedt | |
2008-04-24 | Fix whitespace damage in AVR32 libc sysdeps sys header files. | Hans-Christian Egtvedt | |
2008-04-24 | Fix whitespace damage in AVR32 libc bits header files. | Hans-Christian Egtvedt | |
2008-04-23 | Cleanup INTERNAL_SYSCALL macros for ARM. | Khem Raj | |
2008-04-22 | Added support for error_print_progname as proposed | Carmelo Amoroso | |
by Will Newton <will.newton@gmail.com> | |||
2008-04-22 | Fix segfault in __pthread_initialize_minimal in linuxthreads | Carmelo Amoroso | |
implementation when built without SHARED flag as reported by Will Newton <will.newton@gmail.com> | |||
2008-04-20 | Fix mmap64 undefined on arm oabi with pure thumb1 patchset. Thanks Tobias ↵ | Khem Raj | |
Poschwatta | |||
2008-04-16 | Fix whitespace damage in AVR32 pt-machine.h in libpthread, linuxthreads and ↵ | Hans-Christian Egtvedt | |
linuxthreads.old. | |||
2008-04-16 | Fix whitespace damage in AVR32 string assembler optimized functions. | Hans-Christian Egtvedt | |
2008-04-16 | Fix whitespace damage in AVR32 part of ldso. | Hans-Christian Egtvedt | |
2008-04-16 | Fix whitespace damage in Config.avr32. | Hans-Christian Egtvedt | |
2008-04-16 | Updated email address for Hans-Christian Egtvedt, AVR32 maintainer. | Hans-Christian Egtvedt | |
2008-04-15 | amd64 string ops: use alignment more carefully, and comment it. | Denis Vlasenko | |
By capping max padding to not be bigger than three next insns, we avoid having ridiculously big NOPs like this one: 53:66 66 66 66 2e 0f 1f nopw %cs:0x0(%rax,%rax,1) 5a:84 00 00 00 00 00 which was bigger than next three insns combined! Size changes: text data bss dec hex filename 102 0 0 102 66 x86_64/memcpy.o 102 0 0 102 66 x86_64.old/memcpy.o 90 0 0 90 5a x86_64/mempcpy.o 102 0 0 102 66 x86_64.old/mempcpy.o 210 0 0 210 d2 x86_64/memset.o 242 0 0 242 f2 x86_64.old/memset.o 213 0 0 213 d5 x86_64/stpcpy.o 220 0 0 220 dc x86_64.old/stpcpy.o 428 0 0 428 1ac x86_64/strcat.o 444 0 0 444 1bc x86_64.old/strcat.o 417 0 0 417 1a1 x86_64/strchr.o 418 0 0 418 1a2 x86_64.old/strchr.o 33 0 0 33 21 x86_64/strcmp.o 33 0 0 33 21 x86_64.old/strcmp.o 213 0 0 213 d5 x86_64/strcpy.o 220 0 0 220 dc x86_64.old/strcpy.o 135 0 0 135 87 x86_64/strcspn.o 151 0 0 151 97 x86_64.old/strcspn.o 225 0 0 225 e1 x86_64/strlen.o 233 0 0 233 e9 x86_64.old/strlen.o 140 0 0 140 8c x86_64/strpbrk.o 156 0 0 156 9c x86_64.old/strpbrk.o 135 0 0 135 87 x86_64/strspn.o 151 0 0 151 97 x86_64.old/strspn.o Also, a few files got their .text alignment relaxed from 16 to 8 bytes, which reduces padding at link time. | |||
2008-04-15 | amd64 string ops: replace some instructions by smaller ones, | Denis Vlasenko | |
e.g. testb $0xff, %cl -> testb %cl, %cl | |||
2008-04-12 | Functions should be either exported in public .h files | Denis Vlasenko | |
and marked with libc_hidden_proto/def(), or not be exported in .h files and be hidden (or even static if possible). We have five functions which violate this. Fixing: netdb.h: export ruserpass() rpc/rpc.h: export xdr_accepted_reply() and xdr_rejected_reply() make inet_ntoa_r static function (it is not exported in any .h file) make _time_tzset hidden function (it is not exported in any .h file) | |||
2008-04-10 | remove "register" from _vf[w]printf_internal declarations too | Denis Vlasenko | |
2008-04-10 | even more fixes for vda-made breakage in vXXXfprintf | Denis Vlasenko | |
(pointed out by Peter S.Mazinger) | |||
2008-04-09 | fix breakage in old_vfprintf case | Denis Vlasenko | |
2008-04-09 | restore erroneously removed hidden_def for vdprintf | Denis Vlasenko | |
2008-04-09 | Remove vestigial locking init from sprintf routines. | Denis Vlasenko | |
2008-04-09 | Factor out the core of vprintf() into separate function | Denis Vlasenko | |
vprintf_internal, so that: * vprintf() does locking and __STDIO_STREAM_TRANS_TO_WRITE thing, then calls vprintf_internal * vsnprintf, vdprintf.c, vasprintf.c use vprintf_internal directly This makes sprintf faster (since it doesn't do any locking) and stops it from pulling in fseek in static compile. | |||
2008-04-04 | - use a 16bit value for fnstsw as required by newer binutils. | Bernhard Reutner-Fischer | |
2008-04-01 | Fix remap_file_pages prototype and use mman.h header | Carmelo Amoroso | |
2008-03-26 | - trim trailing whitespace. No object-code changes. | Bernhard Reutner-Fischer | |
2008-03-26 | - fixup stripping of host utils and make host-utils compile with std=gnu99 | Bernhard Reutner-Fischer | |
2008-03-26 | - improve building utils | Bernhard Reutner-Fischer | |
Either by first compiling objects and linking those or by just passing the source to create the desired binary (this patchlet does the latter). Fixes cosmetic glitch by just not building individual .o (in pwd, at least). | |||
2008-03-26 | - fix generation of sysnum.h for parallel builds, second take. | Bernhard Reutner-Fischer | |
Revert r21503 and redo more cleanly. | |||
2008-03-26 | - fix (parallel) compilation error in ldso.c | Bernhard Reutner-Fischer | |
We have to generate sysnum.h to satisfy all includes of ldso.c | |||
2008-03-26 | Paul Brook writes: | Bernhard Reutner-Fischer | |
The attached patch adds support for compiling arm uClibc as pure Thumb code. This is needed because some recent ARM codes do not implement traditional ARM mode. Specifically: * Cortex-M1 - An extremely minimal FPGA based core that only implements Thumb-1 (aka ARMv6-M). * Cortex-M3 - A Thumb-2 only ARMv7-M core. Most of uClibc already builds in Thumb mode, all that is left are a handful of assembly bits. Tested on arm-uclinuxeabi. | |||
2008-03-26 | Enable remap_file_pages prototype controlled by __USE_GNU define as well as ↵ | Carmelo Amoroso | |
mremap, instead of __USE_MISC according to glibc. Missing prototype was spotted out by Peter Mazinger | |||
2008-03-25 | Add missing cast in pointer assignment | Carmelo Amoroso | |
2008-03-21 | Add rempa_file_pages function by Will Newton <will.newton@imgtec.com> | Carmelo Amoroso | |
2008-03-21 | michael_d writes in [#2064]: fix building on linux-2.0 systems | Mike Frysinger | |
2008-03-16 | Add myself as co-maintainer of SH4, specifically for NPTL pthread library ↵ | Carmelo Amoroso | |
and TLS dynamic linker support | |||
2008-03-16 | Remove extra file separator | Carmelo Amoroso | |
2008-03-13 | avr32: Use HIDDEN_JUMPTARGET() macro in bzero.S | Haavard Skinnemoen | |
Also, remove the hidden __memset symbol from memset.S | |||
2008-03-13 | From: Geoffrey Wossum <geoffrey@pager.net> | Haavard Skinnemoen | |
Found a problem with the AVR32 optimized bzero() code. Due to a missing #include, it actually generated no code. | |||
2008-03-13 | Add myself as co-maintainer for the AVR32 architecture | Haavard Skinnemoen | |
2008-03-11 | Move calculation of rem within if (unlikely statement | Carmelo Amoroso | |
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> SIgned-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-03-09 | Khem Raj <kraj@mvista.com> writes: | Carmelo Amoroso | |
While compiling trunk on ARM with GCC 4.2 and enabling LDSO_GNU_HASH_SUPPORT I stumbled upon this problem. GCC made a call to libgcc function __aeabi_uidivmod()->__div0()->__raise() and raise is not yet compiled in at the time of compiling ldso so I got well known undefined symbol __raise problem This patch uses the do_rem () macro to do the same operation. | |||
2008-03-05 | Call explicitely objclean-y when doing build cleanup. | Carmelo Amoroso | |
Remove 'find' command. It makes cleanup faster too. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-02-28 | Fix file permissions | Carmelo Amoroso | |
2008-02-28 | Fix file permissions | Carmelo Amoroso | |
2008-02-28 | Added support for ether_line, ether_ntohost and ether_hostton. | Carmelo Amoroso | |
Added related test cases. Signed-off-by: Matthew Wilcox <matthew@wil.cx> Hacked-by: Carmelo Amoroso <carmelo.amoroso@st.com> |