Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-01 | resolver: partially fix bug 660 - | Denis Vlasenko | |
do not treat negative response as error | |||
2008-11-01 | resolver: fix part of bug 1468: | Denis Vlasenko | |
"gethostbyname() fails if DNS server returns more than 23 addresses" | |||
2008-11-01 | resolver: trivial code trasformations for readability. | Denis Vlasenko | |
No logic changes. Code size is the same too. | |||
2008-11-01 | trivial code shrink by making some strings static | Denis Vlasenko | |
text data bss dec hex filename - 259 0 0 259 103 libc/inet/herror.o + 243 0 0 243 f3 libc/inet/herror.o - 720 0 0 720 2d0 libc/inet/ns_name.o + 710 0 0 710 2c6 libc/inet/ns_name.o | |||
2008-10-31 | - whitespace fixes | Bernhard Reutner-Fischer | |
2008-10-31 | - improve readability, no objcode changes. | Bernhard Reutner-Fischer | |
Looks a bit like we wouldn't need to calculate the carry flag there? | |||
2008-10-31 | Resync pt-machine.h for AVR32 linuxthreads and linuxthreads.old | Hans-Christian Egtvedt | |
This patch synchronizes the AVR32 specific pt-machine.h header file for linuxthreads and linuxthreads.old implementation. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | |||
2008-10-31 | Replace inline with __inline__ in AVR32 pt-machine.h header file | Hans-Christian Egtvedt | |
This patch replaces inline with __inline__ to be more ANSI compatible. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | |||
2008-10-30 | - helper config symbol has to depend on thread support | Bernhard Reutner-Fischer | |
2008-10-30 | File removed as it was not only redundant but also horribly out of date. | Ricard Wanderlof | |
2008-10-29 | - minor shrinkage (-50b) | Bernhard Reutner-Fischer | |
2008-10-29 | - fix use after free (Kevin Day) | Bernhard Reutner-Fischer | |
dl_cleanup will call do_dlclose with the handle. Inside of do_dlclose, the handle will ultimately get free'd. | |||
2008-10-29 | - fix another fallout from r23660 | Bernhard Reutner-Fischer | |
2008-10-28 | - mark trunk as BUGFIX-ONLY after 0.9.30-rc3 | Bernhard Reutner-Fischer | |
2008-10-28 | - bump version to 0.9.30-rc3 | Bernhard Reutner-Fischer | |
2008-10-28 | getaddrinfo.c: improve readability | Denis Vlasenko | |
2008-10-28 | getaddrinfo.c: reformat. no code changes | Denis Vlasenko | |
2008-10-28 | - trim superfluous ';'. No objcode changes | Bernhard Reutner-Fischer | |
2008-10-28 | - fix compilation if LFS is off and STUBs are requested | Bernhard Reutner-Fischer | |
2008-10-28 | Remove all references to __no_netlink_support as after thurough scrutiny of | Ricard Wanderlof | |
the code it was never used in any useful way. | |||
2008-10-28 | Finally fix the MALLOC=y and MALLOC_SIMPLE=y breakage from svn 23660. (I ↵ | Rob Landley | |
found it, this is Bernhard's patch to fix it. Tested and it Works For Me (tm)). | |||
2008-10-28 | make getaddrinfo to NOT query DNS for IPv6 address if host is in | Denis Vlasenko | |
/etc/hosts and it has IPv4 address there. The most common example is "127.0.0.1 localhost". We don't want "ping localhost" to stall and time out on IPv6 queries to, say, inaccessible DNS server, right? - 655 0 0 655 28f libc/inet/gethostbyname2_r.o + 685 0 0 685 2ad libc/inet/gethostbyname2_r.o | |||
2008-10-27 | Explain what malloc simple is good for, and what it isn't good for. | Rob Landley | |
2008-10-27 | - pull in prototype for memalign() | Bernhard Reutner-Fischer | |
2008-10-27 | - add helpful help string | Bernhard Reutner-Fischer | |
2008-10-27 | - Print helptexts of choices. If a choice (but not it's children) has help, ↵ | Bernhard Reutner-Fischer | |
print that. If a choice's child has no help, print parents help. | |||
2008-10-27 | - fix typo in r23808 | Bernhard Reutner-Fischer | |
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 | - do not list non-existing files in the threads prerequisites | Bernhard Reutner-Fischer | |
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 | - fix toggling thread implementation. | Bernhard Reutner-Fischer | |
Previously the old headers were left in include/ leading to spurious compile failures. This is ugly as it can get (we resort to sneaking -L in for the moment) but good enough for now. The worst thing which can happen is that we ln these headers once per invocation of make, nothing more. If some installation of make(1) complains about the "-L" then wrap it in ifneq ($(findstring check-symlink,$(.FEATURES)),) | |||
2008-10-17 | - des uses ntohl | Bernhard Reutner-Fischer | |
2008-10-17 | - guard socket calls with UCLIBC_HAS_SOCKET | Bernhard Reutner-Fischer | |
2008-10-17 | - document environment variables for make(1) | 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-15 | - mark trunk as -rc2-svn | Bernhard Reutner-Fischer | |
2008-10-15 | - bump version to 0.9.30-rc2 | Bernhard Reutner-Fischer | |
2008-10-14 | - fix locale dependencies and make default locale generation less verbose. | Bernhard Reutner-Fischer | |
The verbosity can be set to the previous level by passing V=2 to make. | |||
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 | |