Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-22 | Certain configure scripts test for presence of dlfcn.h. Don't install it | Bernd Schmidt | |
if !HAVE_SHARED. | |||
2007-11-16 | Added AVR32 support to uClibc. Signed-off-by: Hans-Christian Egtvedt ↵ | Carmelo Amoroso | |
<hcegtvedt@atmel.com> | |||
2007-11-07 | Added support for GNU hash style into dynamic linker | Carmelo Amoroso | |
2007-10-20 | - commentary typo fix | Bernhard Reutner-Fischer | |
2007-09-15 | add libc_hidden_xxxx for __uc_malloc | Denis Vlasenko | |
2007-09-15 | sync with glibc | Mike Frysinger | |
2007-09-15 | drop __user hack for crappy kernel headers and document the __linux__ grease | Mike Frysinger | |
2007-07-30 | introduce __uc_malloc, so that users can intercept libc internal OOM. | Denis Vlasenko | |
2007-07-14 | syslog.h: allow prioritynames[]/facilitynames[] to be defined const | Denis Vlasenko | |
(selectable by #defining SYSLOG_NAMES_CONST) | |||
2007-06-24 | - make sure to define _LIBC in libc-symbols.h before including anything | Bernhard Reutner-Fischer | |
else. - internal_function is only used inside libc, so do not define it in uClibc_arch_features.h on i386 if we are outside of libc. | |||
2007-04-17 | - shrink resolver code | Bernhard Reutner-Fischer | |
2007-03-01 | include stddef.h to get NULL definition. | Khem Raj | |
2007-02-28 | add support for ppoll() and emulate poll() with it when __NR_poll does not exist | Mike Frysinger | |
2007-02-28 | sync with glibc | Mike Frysinger | |
2007-02-21 | stub out msync() for no-mmu as well | Mike Frysinger | |
2007-02-12 | Impl. linux syscalls sched_getaffinity/sched_setaffinity but | Joakim Tjernlund | |
protect its use by #ifdef INTERNAL_SYSCALL since not all arch's has INTERNAL_SYSCALL. All arch's not having INTERNAL_SYSCALL in libc/sysdeps/linux/<arch>/bits/syscalls.h should get an update from glibc. | |||
2007-02-08 | use __FDPIC__ from the compiler rather than setting our own | Mike Frysinger | |
2007-02-08 | revert previous change; reading POSIX spec some more says we need to set ↵ | Mike Frysinger | |
errno to EINVAL if filename is NULL | |||
2007-02-08 | we crash if the first argument to realpath() is non-null as well so lets ↵ | Mike Frysinger | |
mark both arguments as being non-NULL | |||
2007-02-05 | no need to duplicate WCHAR check | Mike Frysinger | |
2007-02-05 | - silence warning about using an undefined token | Bernhard Reutner-Fischer | |
2007-01-29 | Richard Sandiford writes: | Mike Frysinger | |
However, retesting on m68k showed up a problem that had appeared in uClibc since the last time I tried. Specifically, revision 15785 did: -#define HEAP_GRANULARITY (sizeof (HEAP_GRANULARITY_TYPE)) +#define HEAP_GRANULARITY (__alignof__ (HEAP_GRANULARITY_TYPE)) -#define MALLOC_ALIGNMENT (sizeof (double)) +#define MALLOC_ALIGNMENT (__alignof__ (double)) The problem is that (a) MALLOC_HEADER_SIZE == MALLOC_ALIGNMENT (b) the header contains a size value of type size_t (c) sizeof (size_t) is 4 on m68k, but... (d) __alignof__ (double) is only 2 (the largest alignment used on m68k) So we only allocate 2 bytes for the 4-byte header, and the least significant 2 bytes of the size are in the user's area rather than the header. The patch below fixes that problem by redefining MALLOC_HEADER_SIZE to: MAX (MALLOC_ALIGNMENT, sizeof (size_t)) (but without the help of the MAX macro ;)). However, we really would like to have word alignment on Coldfire. It makes a big performance difference, and because we have to allocate a 4-byte header anyway, what wastage there is will be confined to the end of the allocated block. Any wastage will also be limited to 2 bytes per allocation compared to the current alignment. I've therefore used the __aligned__ type attribute to create a double type that has at least sizeof (size_t) bytes of alignment. I've introduced a new __attribute_aligned__ macro for this. It might seem silly protecting against old or non-GNU compilers here, but the extra alignment is only an optimisation, and having the macro is more in the spirit of the other attribute code. | |||
2007-01-29 | - see if defined foo before trying to look at the value of foo (that should ↵ | Bernhard Reutner-Fischer | |
be 0 in this case. Avoids some warnings). | |||
2007-01-29 | - sync with glibc (and provide a check for icc). | Bernhard Reutner-Fischer | |
Only affects gcc <2.7 or non-gcc compilers that bailed earlier due to missing int64_t | |||
2007-01-29 | use ifdef rather than if for stack direction | Mike Frysinger | |
2007-01-29 | check to see if __USE_FILE_OFFSET64 is defined rather than if it evaluates ↵ | Mike Frysinger | |
to true | |||
2007-01-29 | missed an underscore in previous commit | Mike Frysinger | |
2007-01-28 | Bernhard Fischer writes: note how uClibc chooses to handle __resolved==NULL | Mike Frysinger | |
2007-01-28 | sync with glibc as pointed out by Bernhard Fischer | Mike Frysinger | |
2007-01-26 | - fix format of comment | Bernhard Reutner-Fischer | |
2006-12-23 | - r16732 forgot to checkin the sync of the __UCLIBC_SUSV3_LEGACY_MACROS__ ↵ | Bernhard Reutner-Fischer | |
from string.h | |||
2006-12-15 | Patch from Bernhard Fischer: | Eric Andersen | |
fix compilation if PUTC_MACRO and/or GETC_MACRO is turned off | |||
2006-12-08 | Take Mike Frysinger's comments into account -- make certain that user | Eric Andersen | |
applications stop using _syscall#() and use syscall() instead. Cleanup internal handling of syscall includes to use the correct header file. | |||
2006-12-08 | Sorry psm but contrary to commit 12927, kernel provided syscalls | Eric Andersen | |
are NOT suitable for user-space. The libc ones are the ones that application code must use. If a problem is found with the libc ones, then the libc syscall macros should be fixed. | |||
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-11-29 | - introduce UCLIBC_SUSV3_LEGACY_MACROS to be able to do away with all LEGACY | Bernhard Reutner-Fischer | |
stuff, even the fallback defines. | |||
2006-11-29 | - honor __UCLIBC_HAS_LFS__ | Bernhard Reutner-Fischer | |
2006-11-29 | - gcvt() is marked LEGACY in XSI and mandatory in BSD. | Bernhard Reutner-Fischer | |
Also make compilation conditional on float support. | |||
2006-11-17 | Bernd Schmidt writes: [blackfin updates] add support for FDPIC and include ↵ | Mike Frysinger | |
L1 functions | |||
2006-09-21 | use proper #APP lines so that the assembler knows when it needs to handle ↵ | Mike Frysinger | |
parsing (see http://sources.redhat.com/ml/binutils/2004-04/msg00665.html) | |||
2006-09-08 | add some inline funcs for the mlock funcs on no-mmu | Mike Frysinger | |
2006-08-24 | sync with upstream via psm | Mike Frysinger | |
2006-08-24 | sync with upstream via psm | Mike Frysinger | |
2006-08-23 | sync with psm: update errno handling to be the same on all arches | Mike Frysinger | |
2006-06-21 | allow arches to easily override asm-line-sep, move cris over to new style, ↵ | Mike Frysinger | |
and have hppa use it now | |||
2006-06-21 | merge bfin relocations from blackfin cvs | Mike Frysinger | |
2006-06-19 | use internal aliases for static objects as well | Mike Frysinger | |
2006-06-07 | sync with glibc | Mike Frysinger | |
2006-06-07 | sync with glibc | Mike Frysinger | |