summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed 'dlopen' call for MIPS. Things seem to work swimingly. Woohoo!"Steven J. Hill"2002-10-152-0/+18
|
* (uClibc_config): Define __UCLIBC_UCLINUX_BROKEN_MUNMAP__ for MMU-less systems.Miles Bader2002-10-151-0/+4
|
* Use __heap_[un]lock instead of __malloc_[un]lock.Miles Bader2002-10-151-4/+4
|
* Get rid of old malloc lock stuff.Miles Bader2002-10-151-8/+0
|
* Fix locking to not deadlock when __UCLIBC_UCLINUX_BROKEN_MUNMAP__ is defined.Miles Bader2002-10-152-34/+32
|
* Kill the now redundant initfini.plEric Andersen2002-10-141-156/+0
| | | | -Erik
* Patch from Christian MICHON <christian_michon@yahoo.fr> to reimplementEric Andersen2002-10-142-2/+79
| | | | | | my little initfini.pl script in awk. This eliminates uClibc's compile-time dependancy on perl, and lets us use the much lighter weight awk, which facilitates building uClibc standalone environments.
* It turns out that __thread is now a gcc keyword. We used __thread inEric Andersen2002-10-133-4/+4
| | | | | | | | a few spots in our header files. In this change I do a s/__thread/__thread_id/ so we no longer conflict with newer CVS versions of gcc (such as the patched up gcc 3.2 included with RedHat 3.0). -Erik
* Octal to hexEric Andersen2002-10-092-2/+2
|
* Support O_STREAMINGEric Andersen2002-10-0912-0/+12
|
* * Add support for uClinux's broken munmap, contingent onMiles Bader2002-10-094-29/+264
| | | | | | | | | __UCLIBC_UCLINUX_BROKEN_MUNMAP__ (which is currently not defined anywhere). This makes other cases a tiny bit less efficient too. * Move the malloc lock into the heap structure (locking is still done at the malloc level though, not by the heap functions). * Initialize the malloc heap to contain a tiny initial static free-area so that programs that only do a very little allocation won't ever call mmap.
* Implemented 'romfs' target so that uClibc works with building uClinux."Steven J. Hill"2002-10-081-1/+12
|
* Patch from Marshall M. Midden <m4@brecis.com> to fixup crt0 forEric Andersen2002-10-011-14/+12
| | | | mips where I had made a mess
* Patch from Stefan Allius <allius@atecom.com>:Eric Andersen2002-10-011-2/+1
| | | | 'wcschrnul.o' appeares two times in MOBJW2
* Patch from Stefan Allius <allius@atecom.com>:Eric Andersen2002-10-016-15/+16
| | | | | | | | | | | | | | | | | | | ----------------------------------- In extra/Configs/Config.sh I added the INCLUDE_PTHREADS statement and change the default values for BUILD_UCLIBC_LDSO and HAVE_SHARED. ----------------------------------- In extra/scripts/initfini.pl My last patch removes two labels, which migth be used by the .size statements. (Sorry, but I'm a perl beginner) I fixed it. ----------------------------------- In libc/sysdeps/linux/common/initfini.c I fixed two warnings "nested extern declaration of `i_am_not_a_leaf.. ----------------------------------- In libc/sysdeps/linux/sh/__init_brl.c brk.c sbrk.c I fixed some compiler warnings which comes from a wrong inclusion order. -----------------------------------
* This commit contains a patch from Stefan Allius <allius@atecom.com> to changeEric Andersen2002-10-0121-192/+317
| | | | | | | how uClibc handles _init and _fini, allowing shared lib constructors and destructors to initialize things in the correct sequence. Stefan ported the SH architecture. I then ported x86, arm, and mips. x86 and arm are working fine, but I don't think I quite got things correct for mips.
* Sigh. OpenBSD used /usr/bin/{true|false}Eric Andersen2002-10-014-5/+5
|
* Replace _LIBC_REENTRANT with __UCLIBC_HAS_THREADS__Eric Andersen2002-09-262-5/+7
| | | | -Erik
* A few additionsEric Andersen2002-09-261-0/+19
|
* A bug fix from Alexey V. Neyman:Eric Andersen2002-09-261-2/+2
| | | | | | | In case of vfork(), the parent was left with __exit_count of -1 and thus tried to find non-NULL value of __exit_function_table[-1].atexit, __exit_function_table[-2].atexit and call this function; of course, it leads to coredump.
* Cosmetic cleanup.Tobias Anderberg2002-09-236-28/+32
|
* Removed redundant code. Same thing exist in sys/syscalls.h so include thatTobias Anderberg2002-09-232-270/+10
| | | | instead.
* Build libpthread now that the CRIS as support for it!Tobias Anderberg2002-09-201-0/+4
|
* * Added clone() system call.Tobias Anderberg2002-09-208-65/+493
| | | | | | | | | | | | * Proper implementation of bits/syscalls.h, no cheating by just including <asm/unistd.h>. * Proper implementation of syscall.S, it no longer contains the __syscall_error, instead it contains code which makes syscall(nr,...) a system call. * Added sysdep.S which contains the code for __syscall_error. * Added some macros to sysdep.h. * Added sys/procfs.h, which is needed when compiling with thread support. * Removed unused syscall-cris.c.
* Added pthread support for CRIS.Tobias Anderberg2002-09-202-0/+77
|
* Removed unused fileTobias Anderberg2002-09-201-4/+0
|
* Add gnu obstack support. I still need to implement the obstack_printfManuel Novoa III2002-09-195-2/+1277
| | | | and obstack_vprintf, but at least now the reiserfsprogs build.
* Add SUSv3 function getsubopt.Manuel Novoa III2002-09-192-1/+73
|
* Hide my personal #warning reminders. Add __wcschrnul, rename strchrnulManuel Novoa III2002-09-197-10/+31
| | | | to __strchrnul, and add weak aliases for them.
* * Changed paramater names to match their register, i.e. __a -> __r10.Tobias Anderberg2002-09-192-112/+112
| | | | * Do not clobber things that are specified as outputs.
* Fixup thread support for the 5200/5307 coldfire platforms.David McCullough2002-09-171-1/+9
|
* Add in clone and make the assembler PIC/msep-data friendly.David McCullough2002-09-171-6/+16
|
* Fixup JMPBUF_UNWINDS so that is will compile if used :-)David McCullough2002-09-171-1/+1
|
* Fix a memory corruption bug.David McCullough2002-09-171-3/+6
| | | | | | With gcc, sizeof on a sized array argument to a function returns 4, not 16 as was expected in this code. This caused inet_ntoa to overwrite whatever came before the buffer in the BSS by up to 12 bytes.
* Add urlEric Andersen2002-09-161-2/+2
|
* Update indexEric Andersen2002-09-161-0/+27
|
* Use __UCLIBC_HAVE_LFS__ not __USE_LARGEFILE64 to decide ifEric Andersen2002-09-161-2/+3
| | | | | 64 bit interfaces should be used. -Erik
* * Added semi-support for version scripts. If sysdeps/linux/<arch>/libc.mapTobias Anderberg2002-09-161-2/+8
| | | | | exists read it and include it when linking. * Add LIBGCC when linking libc.
* * Updated for the CRIS port.Tobias Anderberg2002-09-162-0/+4
| | | | | * Added variable LIBGCC which is included when linking libc.so. Arch specific linker options go into LIBGCC_CFLAGS defined in Config.<arch>.
* Configuration for the CRIS port.Tobias Anderberg2002-09-161-0/+212
|
* Updated for the CRIS port.Tobias Anderberg2002-09-162-0/+6
|
* Initial version of the dynamic linker code for the CRIS port.Tobias Anderberg2002-09-168-0/+979
|
* Added cris to ALL_SUBDIRSTobias Anderberg2002-09-161-1/+1
|
* Initial version of the CRIS port.Tobias Anderberg2002-09-1627-0/+1634
|
* Fix stupid typo noticed by John Mullin <john.mullin@homenetcomm.com>Eric Andersen2002-09-161-1/+1
|
* Fix a thinko -- I used the wrong symbol to check for LFS support.Eric Andersen2002-09-141-1/+1
| | | | -Erik
* (__heap_check_failure): New function.Miles Bader2002-09-131-16/+67
| | | | (__heap_check): Add more checks. Use `__heap_check_failure'.
* Support LD_DEBUG=allTobias Anderberg2002-09-121-5/+11
|
* Some minor C++ support updatesEric Andersen2002-09-121-1/+13
|
* Add missing _dl_dprintf arguments, as noticed by Tero Lyytik�inen ↵Eric Andersen2002-09-123-3/+6
| | | | <tero@paravant.fi>