Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-03-08 | svn 17941/17943 broke the build. 18032 made the threaded case compile | Rob Landley | |
again, this makes the non-threaded case compile again. I have no idea if this is the proper fix, I'm just tired if it not compiling for two weeks. | |||
2007-03-07 | Fix a build break due to errno and h_errno being unresolved symbols. | Rob Landley | |
(No idea if this is the right fix but it's something for now.) | |||
2007-02-22 | need to double check internal errno handling wrt libpthread | Mike Frysinger | |
2007-02-21 | add missing file for previous commit as pointed out by Peter Kjellerstedt | Mike Frysinger | |
2007-02-21 | redo errno handling so that it should work both in thread and non-threaded ↵ | Mike Frysinger | |
situations | |||
2007-01-30 | - should look if LFS is enabled as suggested by pkj in #1131. This generates ↵ | Bernhard Reutner-Fischer | |
identical cc1 input for LFS enabled (compared to before r17652) but makes sure that we pickup the non-LFS if LFS is turned off (like r17652 did in this case). | |||
2007-01-29 | - fix compilation of GNU glob with !LFS | Bernhard Reutner-Fischer | |
Sounds like a typo, really | |||
2007-01-11 | Peter Mazinger pointed out that my last commit was faulty. | Joakim Tjernlund | |
This should fix it. | |||
2007-01-10 | Fix SEGV for static builds in exit() path. | Joakim Tjernlund | |
Leave the now obsolete libc/misc/pthread dir in for now. | |||
2006-12-11 | create new menu so people can select what format they wish to build uClibc | Mike Frysinger | |
2006-12-09 | these weaks are also needed in libc.so for the time being | Eric Andersen | |
2006-12-09 | oops, use __pthread_mutex_unlock() not pthread_mutex_unlock() | Eric Andersen | |
2006-12-09 | silence a lot of warnings and fix a few genuine bugs while I'm at it. | Eric Andersen | |
2006-12-08 | Richard Sandiford writes: add support for init/fini arrays in shared flat ↵ | Mike Frysinger | |
libraries | |||
2006-12-08 | finish the pthread locking cleanups. This should get things compiling again | Eric Andersen | |
though I still need to silence the warnings about _pthread_cleanup_push_defer | |||
2006-12-07 | Major cleanup of internal mutex locking. Be more consistant in how we do | Eric Andersen | |
things, and avoid potential deadlocks caused when a thread holding a uClibc internal lock get canceled and terminates without releasing the lock. This change also provides a single place, bits/uClibc_mutex.h, for thread libraries to modify to change all instances of internal locking. | |||
2006-12-02 | (no commit message) | "Steven J. Hill" | |
2006-11-27 | fix from cmetcalf to make sure we clear the auxvt table before using it | Mike Frysinger | |
2006-11-07 | I failed to check the patch adding support for the new (stupid) US 2007 | Eric Andersen | |
daylight savings time rules when xlocale was enabled. Fix compile error. | |||
2006-11-06 | mips64 patch from Atsushi Nemoto: | Eric Andersen | |
We should not use old stype ipc_perm for 64-bit mips kernel. I suppose other 64-bit platforms shoule define __IPC_64 also and we can define it unconditionally, but not sure for other archs ... | |||
2006-11-02 | In bug 622, JohnAta writes: | Eric Andersen | |
In 2005, Congress passed a law so that in 2007, the second week of March starts DST. Previously, it was the first week of April. The uclibc time library routines apparently have not been updated to reflect this new processing. Using the current version of uclibc, on March 11, 2007 the reported time will be incorrect. | |||
2006-08-30 | fix bug 1012 as noted by moschny | Eric Andersen | |
2006-08-23 | sync with psm: update errno handling to be the same on all arches | Mike Frysinger | |
2006-07-13 | psm writes: | Eric Andersen | |
forgotten to mention to remove glob-hooks.c and the reference in Makefile.in (the prototypes for the 3 hooks were already removed by the patch applied here) Peter | |||
2006-07-13 | patch from psm: | Eric Andersen | |
- malloc/realloc/free are not prepared to be hidable in trunk, you can't use libc_hidden_proto(x) for them - using libc_hidden_proto(x64) LFS unguarded will fail because the header does not provide the prototype - if you are using libc_hidden_proto(collated_compare|prefix_array), you also need libc_hidden_def|_weak(x) after the function itself, the result being to provide a hidden __GI_collated_compare and a visible collated_compare, for this case I do not consider this necessary, especially that collated_compare is hidden already (I have chosen to prefix them with __ to know that they are intended to be internal only, against the practice in glibc, you could go without prefix as well) | |||
2006-07-05 | remove jump relocs, with minor related cleanups | Eric Andersen | |
2006-07-05 | fixup my copyright notice, trim stale remnants of older notices which | Eric Andersen | |
I had clearly run search/replace on that were cluttering things up. | |||
2006-07-05 | minor updates | Eric Andersen | |
2006-07-04 | gcc 4.1.x is apparently miscompiling gnu glob on mips. This ports the ↵ | Eric Andersen | |
latest and massivly bloated greatest from glibc. And fixes things so the gnu glob interface is no longer the default. | |||
2006-05-06 | expand comment a little more as to why _stdio_init() is weak thanks to mjn3 | Mike Frysinger | |
2006-05-04 | use weak_alias() for data symbols, not strong_alias() | Mike Frysinger | |
2006-03-23 | select needs sys/select.h, str[n]casecmp/ffs needs strings.h, if BSD is not ↵ | Peter S. Mazinger | |
defined, gettimeofday has other prototype and tm_gmtoff/tm_zone do not exist | |||
2006-03-22 | Correct build if UCLIBC_HAS_CTYPE_TABLES is not defined | Peter S. Mazinger | |
2006-03-22 | Mark some functions as GNU, provide missing hidden memmem, remove ↵ | Peter S. Mazinger | |
_ISOC99/XOPEN_SOURCE | |||
2006-03-22 | some more fixes from rholzmann in Bug 716 ... make sure the code actually ↵ | Mike Frysinger | |
functions, then we worry about shrinking it ... | |||
2006-03-10 | Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵ | Peter S. Mazinger | |
most of global data relocations are back | |||
2006-03-09 | Remove __libc_internal_tsd_{s,g}et, they do not exist anymore | Peter S. Mazinger | |
2006-03-07 | Add UCLIBC_HAS_SSP_COMPAT option guarding gcc-3.x ssp support | Peter S. Mazinger | |
2006-03-01 | return NULL if year is too big | Mike Frysinger | |
2006-03-01 | alpha needs ipc64 funk too | Mike Frysinger | |
2006-02-28 | Sync w/ glibc | Peter S. Mazinger | |
2006-02-28 | Cleanup/sync w/ glibc | Peter S. Mazinger | |
2006-02-27 | Rich Felker's glob() ported to uClibc | Peter S. Mazinger | |
2006-02-27 | Get rid of redefines on ppc pointed out by vapier | Peter S. Mazinger | |
2006-02-26 | Don't build glob64 for non-LFS | Peter S. Mazinger | |
2006-02-26 | Use _lfs_64, reorganize a bit, why did stat*fs64 use stat*fs? | Peter S. Mazinger | |
2006-02-26 | Remove unneeded hidden_proto(readdir*) | Peter S. Mazinger | |
2006-02-26 | Use _lfs_64.h in all *64.c | Peter S. Mazinger | |
2006-02-26 | Define internal readdir*_r() and use _lfs_64.h | Peter S. Mazinger | |
2006-02-18 | tweak the idea between having a MMU and actually using it | Mike Frysinger | |