summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Initial checkin.Miles Bader2003-01-302-0/+63
|
* Create stub crti.o and crtn.o files when UCLIBC_CTOR_DTOR is disabledEric Andersen2003-01-291-2/+9
| | | | -Erik
* Fix scandir64 to not free the wrong pieces of memory (which couldEric Andersen2003-01-2810-92/+297
| | | | | | | | and did cause segfaults) by adjusting the working scandir.c to the the 64 thing. Fix up potential for mismatches between the libc and kernel dirent structures, which could also cause ugly problems. -Erik
* Add a couple of testsEric Andersen2003-01-284-2/+166
|
* Stefan Allius noticed dlib_pic.o was not using XXFLAGS as it shouldEric Andersen2003-01-281-1/+1
|
* Patch from Stefan Allius to fix the build whenEric Andersen2003-01-282-0/+4
| | | | large file support is disabled
* Add multiple-include protection.Miles Bader2003-01-271-0/+4
|
* bahEric Andersen2003-01-251-1/+1
|
* CleanerEric Andersen2003-01-251-3/+2
|
* Fix the 'make release' target0_9_17Eric Andersen2003-01-251-2/+4
|
* This seems to be needed or else apps will blow up.Eric Andersen2003-01-251-9/+2
| | | | -Erik
* some minor todo updatesEric Andersen2003-01-251-7/+10
|
* Move some stuff into old-newsEric Andersen2003-01-252-76/+76
|
* Update webpage for releaseEric Andersen2003-01-252-38/+130
|
* Update the changelog for releaseEric Andersen2003-01-252-61/+168
|
* Fix powerpc struct kernel_stat typesEric Andersen2003-01-241-19/+18
|
* Stick some evil casts in to make sure this works regardlessEric Andersen2003-01-241-13/+13
| | | | of the underlying data types.
* A few more needed updatesEric Andersen2003-01-249-152/+736
|
* Begin release preparations...Eric Andersen2003-01-242-761/+541
|
* Support having libs in /usr/X11R6/lib by default as wellEric Andersen2003-01-242-0/+2
|
* Stupid typoEric Andersen2003-01-241-1/+2
|
* Finish up fixing stat and setting various system types.Eric Andersen2003-01-2412-98/+52
|
* Don't clean config system except on 'make distclean'. Remember toEric Andersen2003-01-241-1/+2
| | | | clean locale stuff on 'make clean'
* Better stat testsEric Andersen2003-01-243-37/+118
|
* I thought it would be smaller to inline since these funcs are small.Eric Andersen2003-01-244-10/+51
| | | | | Well, not inlining saves 300 bytes, so do that instead. -Erik
* Ok, people are probably going to hate me for this... This commit changes theEric Andersen2003-01-2416-504/+311
| | | | | | | | | | | | | | | type of 'struct stat' and 'struct stat64' so they use consistant types. This change is the result of a bug I found while trying to use GNU tar. The problem was caused by our using kernel types within struct stat and trying to directly compare these values with standard types. Trying an 'if (a < b)' when 'a' is an 'unsigned long' and 'b' is an 'int' leads to very different results then when comparing entities of the same type (i.e. time_t values).... Grumble. Nasty stuff, but I'm glad I got this out of the way now. As a result of this fix, uClibc 0.9.17 will not be binary compatible with earlier releases. I have always warned people this can and will happen. -Erik
* Add FAQ entry for "sh: can't access tty; job control turned off"Eric Andersen2003-01-241-2/+24
| | | | -Erik
* Doh! Fix potential stack corruption caused by dynamic atexitEric Andersen2003-01-241-2/+6
| | | | | allocating size incorrectly.... -Erik
* Update architecture specific support to consistantlyEric Andersen2003-01-2319-137/+56
| | | | | | generate a crt0 and crt1 file. Most arches still need to be updated to call __uClibc_start_main() rather than __uClibc_main().
* Hopefully this is correctEric Andersen2003-01-232-11/+18
|
* Hopefully this will work as expected. I have no way toEric Andersen2003-01-232-6/+16
| | | | test but this should be correct.
* Update crt0 for arm to provide the main referenceEric Andersen2003-01-231-7/+13
| | | | | | a bit more nicely, and make _init and _fini be weak for people with broken compilers -Erik
* Shuffle OPTIMIZATION setting a bitEric Andersen2003-01-231-4/+3
|
* Wasn't thinking... we don't need to seek to end when appending if stdioManuel Novoa III2003-01-231-12/+0
| | | | is built without buffer support.
* Update tests to be somewhat consistant with the rest of the worldEric Andersen2003-01-2315-73/+129
|
* Update ignore listEric Andersen2003-01-231-1/+1
|
* Update a tiny bitEric Andersen2003-01-231-5/+1
|
* Cleanup makefiles and make clean a bitEric Andersen2003-01-234-13/+16
|
* Making atexit weak does nothing for dynamicly linked apps. And forEric Andersen2003-01-231-3/+5
| | | | | | | | | | staticly linked apps it entirely prevents destructors from running unless atexit is called for some other reason. So if they enabled ctor/dtor support we need to have a call to the real atexit for dtors to work properly. If people don't want the extra 4k or so of junk in their static apps, they should leave ctor/dtor support disabled. -Erik
* simpler method for getting a 'main' reference. Make _init and _finiEric Andersen2003-01-231-6/+12
| | | | be weak so people won't need to fix their compilers
* Shuffle two lines so the comment applies to the correct line.Eric Andersen2003-01-231-2/+2
|
* Rewrite powerpc crt0.S for proper ctor/dtor handlingEric Andersen2003-01-232-40/+61
|
* Kill the needless '#if 1'Eric Andersen2003-01-231-2/+0
|
* Update malloc behavior on malloc(0) to be consistant withEric Andersen2003-01-231-2/+5
| | | | malloc-930716 behavior, i.e. return a NULL.
* Just be a bit less different from latest glibc version in commentsEric Andersen2003-01-234-6/+6
| | | | and in the files where variables live.
* Per patch from Nathan Field at ghs.com, fix the mips __compare_and_swap inlineEric Andersen2003-01-231-0/+27
| | | | | function. Without this fix, pthread_mutex_lock/pthread_mutex_unlock don't work on mips.
* Per patch from Nathan Field at ghs.com, fix __pthread_initialize_manager so itEric Andersen2003-01-231-3/+5
| | | | | locks before calling clone when under a debugger, and unlocks on success or failure of clone when under a debugger.
* Per patch from Nathan Field at ghs.com, add a couple of variablesEric Andersen2003-01-232-0/+7
| | | | needed to make gdb happy when debugging threadded apps.
* Fix indenting. Per patch from Nathan Field at ghs.com, changeEric Andersen2003-01-231-19/+17
| | | | LINUXTHREADS_PTHREAD_THREADS_MAX to properly point to "__pthread_threads_max".
* Patch from Brett Hunt at micron.com to fixup potential segfaultsEric Andersen2003-01-231-4/+4
| | | | during 'make menuconfig'