Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-03-05 | Default to using fork() for vfork() when no arch specific | Eric Andersen | |
implementation of vfork is present. | |||
2003-03-04 | Seperate pthread debugging from uClibc debugging. They are used | Eric Andersen | |
for different things. | |||
2003-03-04 | Patch from Stefan Allius adding the function 'thread_self_stack' | Eric Andersen | |
from glibc 2.3 that is needed for pthreads to compile for SuperH. | |||
2003-03-04 | Patch from Stefan Allius to make ldd.c compile under Solaris | Eric Andersen | |
2003-03-04 | Teach ldd to be a bit more helpful by telling you specifically | Eric Andersen | |
what the problem library is that is linked vs glibc. -Erik | |||
2003-03-04 | Fix compile when profiling is disabled | Eric Andersen | |
2003-03-03 | Fix grammar | Eric Andersen | |
2003-03-03 | Initial effort at adding profiling support. | Eric Andersen | |
2003-03-03 | Updates for release | Eric Andersen | |
2003-03-03 | Update version | Eric Andersen | |
2003-03-03 | Fix location of cvs | Eric Andersen | |
2003-03-03 | begin preparing for release | Eric Andersen | |
2003-03-03 | Remove bogus link_warning. It is meaningless and stupid. While the | Manuel Novoa III | |
previous committed patch was well-meaning, the #warning it replaced was simply a reminder I accidently left in when implementing strcoll/wcscoll. Besides, strcmp is completely locale invariant. | |||
2003-03-03 | more uClinux shared libs fixups | David McCullough | |
2003-03-03 | fix coldfire/68000 support properly this time, ifdef logic was back to | David McCullough | |
front. | |||
2003-03-03 | Fix the double sub #48, should have been an add :-) | David McCullough | |
2003-03-02 | cut-n-paste strikes again | Eric Andersen | |
2003-03-02 | Add missing alias __modify_ldt | Eric Andersen | |
2003-03-01 | Teach ldd to act just the glibc provided one (relying on the | Eric Andersen | |
shared lib loader to do the work) when it is possible to do so, and only go poking about through the ELF headers when that fails so we can still use 'ldd' on cross compiled stuff. -Erik | |||
2003-03-01 | Patch from Jeffrey Damick: | Eric Andersen | |
With glibc if you do a res_init() that forces a reread of the nameservers file, but in uClibc the res_init will not force a reread if it has already read the file because then the nameservers value is greater than 0. So res_init must call close_nameservers() before calling open_nameservers(). | |||
2003-03-01 | Use a funky version in a probably vein attempt at preventing gdb | Eric Andersen | |
from dlopen()'ing glibc's libthread_db library... | |||
2003-03-01 | doh. I forgot mips can't talk to globals that early on in the | Eric Andersen | |
process. Fix that up too. | |||
2003-03-01 | doh. I forgot mips can't talk to globals that early on in the | Eric Andersen | |
process. Fix that up too. -Erik | |||
2003-03-01 | Fix the shared library loader so we can properly debug things like pthreads. | Eric Andersen | |
Mips gdb support for pthreads and similar complex stuff is broken, but then it couldn't have worked before either... -Erik | |||
2003-02-28 | Fix a potential compile error | Eric Andersen | |
2003-02-28 | Fixup mips pthreads | Eric Andersen | |
2003-02-28 | restore the coldfire changes | David McCullough | |
2003-02-27 | Major update for pthreads, based in large part on improvements | Eric Andersen | |
from glibc 2.3. This should make threads much more efficient. -Erik | |||
2003-02-27 | Fix a silly bug | Eric Andersen | |
2003-02-27 | Patch from David Airlie to fix handling of ctor/dtor stuff when used in | Eric Andersen | |
combination with and w/o both the nostdinc and nostdlib options. | |||
2003-02-26 | Prefer mmap2 for mips when available. Fix the mmap test. | Eric Andersen | |
-Erik | |||
2003-02-26 | Fixup a really stupid and terribly obvious bug that was causing | Eric Andersen | |
the shared lib loader on mips to puke... -Erik | |||
2003-02-26 | Add a bunch of additional early debugg messages into the shared | Eric Andersen | |
lib loader to make it more obvious what is wrong when things puke early on in the process. -Erik | |||
2003-02-25 | Add a toolchain section. Mention Steven J. Hill's mips RPMs. | Eric Andersen | |
2003-02-24 | Fixup some small issues that show up when large file support is disabled | Eric Andersen | |
2003-02-23 | Fix FP handling alignment problems on ARM platforms without an FPU, | David McCullough | |
patch from Vadim Lebedev <vadim@7chips.com>. | |||
2003-02-23 | Some stuff I forgot to check in about a month ago... | Eric Andersen | |
-Erik | |||
2003-02-21 | Reserve stack space for args we pass to __uClibc_main. | Miles Bader | |
2003-02-20 | Add back in PTRACE_SINGLESTEP. | Miles Bader | |
Use decimal instead of hex to agree with common/sys/ptrace.h. | |||
2003-02-18 | Fixup ioctl so we can special case powerpc silliness | Eric Andersen | |
2003-02-17 | Mention latest update | Eric Andersen | |
2003-02-17 | Fixup bui | Eric Andersen | |
2003-02-17 | Patch from Stefan Allius | Eric Andersen | |
And at last I fixed a warning in test's Makefile. (ldso was first added to the ALL_SUBDIRS variable in line 25): | |||
2003-02-17 | Patch from Stefan Allius: | Eric Andersen | |
In libc/string/wstring I replaced a '#warning ..' statement by the link_warning macro. | |||
2003-02-17 | Patch from Stefan Allius: | Eric Andersen | |
I patched the link_warning macro in features.h to fix warnings like: locale.c:358: warning: `__evoke_link_warning_localeconv' defined but not used | |||
2003-02-17 | updates to the uClinux-dist romfs and uClinux shared library targets. | David McCullough | |
2003-02-17 | Use a define for the path to /etc/TZ | David McCullough | |
2003-02-17 | Using -g when doing the initfini compilation breaks the SH4 case pretty | David McCullough | |
badly. I have removed -g for all platforms as I suspect no one wants it for the initfini creation process. | |||
2003-02-17 | If floating point was enabled, setjmp would write to memory well past the | David McCullough | |
end of the buffer. | |||
2003-02-16 | Fixup powerpc syscalls to eliminate warnings with gcc-3.2, and fix | Eric Andersen | |
some other minor warnings. |