Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-27 | libc/inet/getaddrinfo.c: const'ify some data; | Denis Vlasenko | |
avoid using zero-filled constants in bss: text data bss dec hex filename 3182 24 48 3254 cb6 getaddrinfo_old.o 3280 0 0 3280 cd0 getaddrinfo.o | |||
2008-10-25 | Use C implementation of strncmp. | Khem Raj | |
Add a new strncmp testcase. | |||
2008-10-24 | - fix mips syscall (Atsushi Nemoto) | Bernhard Reutner-Fischer | |
2008-10-24 | - tidy up inline: | Bernhard Reutner-Fischer | |
ldso and syscalls are __always_inline (the latter would need more cleanup) | |||
2008-10-22 | - remove superfluous ';'. No objcode changes. | Bernhard Reutner-Fischer | |
2008-10-22 | - delete_module() takes two arguments on linux-2.6 | Bernhard Reutner-Fischer | |
Closes #5644 | |||
2008-10-20 | - need to grab features before looking at eventually requested netlink support | Bernhard Reutner-Fischer | |
Thanks to Peter S. Mazinger for pointing out this (obvious) error. The __ASSUME_NETLINK from ricardw's r22531 references a non-existing variable in certain cases. I don't see how that could possibly work.. | |||
2008-10-19 | - do not include netlink headers if netlink is turned off (Michael Deutschmann) | Bernhard Reutner-Fischer | |
Closes #5544 | |||
2008-10-19 | - fix sigaction on older kernels (Michael Deutschmann) | Bernhard Reutner-Fischer | |
In issue #5554 Michael wrote: The implementation of sigaction on i386 for older kernels makes the system call using an inline asm element with two flaws: 1. The asm is not marked as depending on the kact structure or modifying the koact structure. Thus, GCC is free to assume these structures need not be kept consistent, allowing it to remove all initialization of kact. 2. The asm allows the signal number to be provided as a memory reference. But this allows GCC to provide a stack-relative operand, which will break because the assembler saves %ebx on the stack before using that operand. 1 didn't use to be a problem in practice because GCC 4.2.* didn't seize the optimization opportunity. GCC 4.3.2, however, optimizes out the "kact.sa_flags = act->sa_flags | SA_RESTORER;" line, so that the kernel sees garbage in sa_flags. This can result in the kernel seeing the SA_RESETHAND flag, causing erratic behaviour in signal dependent programs. 2 becomes an issue if "-fomit-frame-pointer" is provided. In uClibc-0.9.29 it isn't, uClibc-0.9.30-rc2 does use the flag by default. | |||
2008-10-18 | - sync fix for scandir errno handling to scandir64 (r23600) | Bernhard Reutner-Fischer | |
Thanks to Peter S. Mazinger for mentioning this. | |||
2008-10-17 | - des uses ntohl | Bernhard Reutner-Fischer | |
2008-10-16 | This should fix malloc with debug and without threads. (Chase N Douglas) | Bernhard Reutner-Fischer | |
This should have been in r23660. Untested. | |||
2008-10-11 | Fix bug 4994 hangs on read(). I have tested the patch extensibly on ARM/LT.old. | Khem Raj | |
Thank you Chase Douglas for reporting it and for the patch. | |||
2008-10-10 | - fix copy'n paste error | Bernhard Reutner-Fischer | |
2008-10-10 | - fix return value | Bernhard Reutner-Fischer | |
2008-10-10 | - add signalfd() | Bernhard Reutner-Fischer | |
2008-10-08 | - Fix strtol*() with xlocale (on e.g. x86_64) (closes #2544) | Bernhard Reutner-Fischer | |
2008-10-08 | - add/use variables to make build-tools configurable | Bernhard Reutner-Fischer | |
2008-10-06 | Fix scandir function to reset the errno when the | Carmelo Amoroso | |
selector returns zero(no entries) modifying the errno. The attached test case implements a dummy filter that returns alway no entries, but change the errno. scandir is not expected to fail, just returning 0 entries. Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com> Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-10-06 | - fix typo in previous commit | Bernhard Reutner-Fischer | |
2008-10-06 | - add libc_hidden_def(clock_getres) as spotted by Ned Ludd | Bernhard Reutner-Fischer | |
2008-10-06 | - sync obstack.{c,h} with glibc (Peter S. Mazinger) | Bernhard Reutner-Fischer | |
2008-10-06 | - Fallback waitid impl (Peter S. Mazinger) | Bernhard Reutner-Fischer | |
2008-10-06 | - hide relocation (Peter S. Mazinger) | Bernhard Reutner-Fischer | |
2008-10-06 | - tweak inclusion of asm/socket.h for linux-2.4 (Peter S. Mazinger) | Bernhard Reutner-Fischer | |
2008-10-03 | - add long double math wrappers (Ned Ludd) | Bernhard Reutner-Fischer | |
2008-10-03 | - use c89-style comments | Bernhard Reutner-Fischer | |
Closes issue #5194 | |||
2008-10-01 | Fix compilation problem whit the following config options: | Carmelo Amoroso | |
UCLIBC_HAS_STRING_GENERIC_OPT=y UCLIBC_HAS_STRING_ARCH_OPT is not set by making WORD_COPY_FWD macros visible. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-09-30 | - add missing const qualifier for !__NR_sched_setaffinity && HAVE_STUBS | Bernhard Reutner-Fischer | |
2008-09-30 | - remove some duplicate includes | Bernhard Reutner-Fischer | |
2008-09-30 | - fix compilation of UCLIBC_HAS_PTY && !ASSUME_DEVPTS && !LINUX_SPECIFIC | Bernhard Reutner-Fischer | |
2008-09-29 | - add a copy of user_regs | Bernhard Reutner-Fischer | |
2008-09-29 | - honour UCLIBC_HAS_SYSLOG | Bernhard Reutner-Fischer | |
2008-09-29 | - now passes all LTP tests | Bernhard Reutner-Fischer | |
2008-09-29 | i18n: Fix mbrtowc function to handle 0xc0 and 0xc1 sequence. | Carmelo Amoroso | |
When the first byte of the multibyte sequence start with 0xc0 or 0xc1, the whole sequence is invalid, so the return value must be -1 (instead of -2). Fix bug #686. Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com> Acked-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2008-09-29 | - fix ISO C keywords | Bernhard Reutner-Fischer | |
2008-09-27 | getgrouplist(): ...add files which I forgot to add. | Denis Vlasenko | |
2008-09-27 | implement getgrouplist() | Denis Vlasenko | |
2008-09-26 | use __UCLIBC_HAS_STUBS__ | Mike Frysinger | |
2008-09-26 | - move libm_hidden_proto to the corresponding headers. Remove from callsites. | Bernhard Reutner-Fischer | |
Note that gamma_r is not provided by glibc, perhaps add a SUN specific knob later | |||
2008-09-26 | Rebased the memcpy() and memset() implementations for CRIS on the versions | Peter Kjellerstedt | |
found in newlib rather than the ones found in glibc. This should make them smaller and (hopefully) make them compile with newer versions of gcc. | |||
2008-09-26 | Correct _init()/_fini() for CRISv32 as suggested by Stefan de Konink. | Peter Kjellerstedt | |
2008-09-25 | - cast both times to double for consistency | Bernhard Reutner-Fischer | |
2008-09-25 | - also clean .oS | Bernhard Reutner-Fischer | |
2008-09-25 | - disable gettext support in obstack. | Bernhard Reutner-Fischer | |
In function `print_and_abort': obstack.c:(.text.print_and_abort+0x1b): undefined reference to `__dcgettext' | |||
2008-09-25 | - fix compilation of legacy mode | Bernhard Reutner-Fischer | |
2008-09-25 | - add missing hidden_def | Bernhard Reutner-Fischer | |
2008-09-25 | - fix !LFS case for i386 | Bernhard Reutner-Fischer | |
2008-09-25 | - arm eabi needs __UCLIBC_TRUNCATE64_HAS_4_ARGS__ | Bernhard Reutner-Fischer | |
(75_all_uClibc-arm-ftruncate64.patch from gentoo) | |||
2008-09-25 | sh: Fix SYSCALL_INST_STRx to work for SH-2[A] core by using the | Carmelo Amoroso | |
__SH_SYSCALL_TRAP_BASE macro. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> |