2011-04-03 |
Rich Felker | add setresuid/setresgid functions (nonstandard) |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | pthread_create need not set errno |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | fix statvfs syscalls (missing size argument) |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | block all signals during rsyscall |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | fix race condition in rsyscall handler |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | don't trust siginfo in rsyscall handler |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | timer threads should sleep and stay asleep... a long... |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | revert to deleting kernel-level timer from cancellation... |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | simplify calling of timer signal handler |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | d_fileno alias for d_ino in dirent |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | simplify pthread tsd key handling |
commit | commitdiff | tree | snapshot |
2011-04-03 |
Rich Felker | omit pthread tsd dtor code if tsd is not used |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | don't disable seeking after first seek failure |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | apparently fseek should not set the error flag on faile... |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | update release notes v0.7.5 |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | avoid over-allocation of brk on first malloc |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | reorganize the __libc structure for threaded performanc... |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | simplify setting result on thread cancellation |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | use bss instead of mmap for main thread's pthread threa... |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | remove obsolete and useless useconds_t type |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | somehow timespec tv_nsec had the wrong type on x86_64... |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | fix misspelled PTHREAD_CANCELED constant |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | document more changes |
commit | commitdiff | tree | snapshot |
2011-04-02 |
Rich Felker | document changes for upcoming 0.7.5 release |
commit | commitdiff | tree | snapshot |
2011-04-01 |
Rich Felker | use a_store to set cancel flag in pthread_cancel, to... |
commit | commitdiff | tree | snapshot |
2011-03-31 |
Rich Felker | simplify pthread_key_delete |
commit | commitdiff | tree | snapshot |
2011-03-31 |
Rich Felker | greatly simplify pthread_key_create (~20% size reduction) |
commit | commitdiff | tree | snapshot |
2011-03-30 |
Rich Felker | add some missing prototypes for nonstandard functions... |
commit | commitdiff | tree | snapshot |
2011-03-30 |
Rich Felker | avoid all malloc/free in timer creation/destruction |
commit | commitdiff | tree | snapshot |
2011-03-30 |
Rich Felker | optimize timer creation and possibly protect against... |
commit | commitdiff | tree | snapshot |
2011-03-30 |
Rich Felker | avoid crash on stupid but allowable usage of pthread_mu... |
commit | commitdiff | tree | snapshot |
2011-03-30 |
Rich Felker | rename __simple_malloc.c to lite_malloc.c - yes this... |
commit | commitdiff | tree | snapshot |
2011-03-30 |
Rich Felker | streamline mutex unlock to remove a useless branch... |
commit | commitdiff | tree | snapshot |
2011-03-30 |
Rich Felker | cheap special-case optimization for normal mutexes |
commit | commitdiff | tree | snapshot |
2011-03-30 |
Rich Felker | reorder timer initialization so that timer_create does... |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | missing prototype for wcscoll (stub) |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | revert mutex "optimization" that turned out to be worse |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | implement POSIX timers |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | major improvements to cancellation handling |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | some preliminaries for adding POSIX timers |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | fix tempnam name generation, and a small bug in tmpnam... |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | make tmpfile fail after exceeding max tries. |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | fix tmpnam to generate better names, not depend on... |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | fix messed-up errno if remove fails for a non-EISDIR... |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | learned something new - remove is supposed to support... |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | revert some more spin optimizations that turned out... |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | fix bug from syscall overhaul: extra __syscall_ret... |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | fix broken spinlock due to miscompilation |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | prototype for getpass |
commit | commitdiff | tree | snapshot |
2011-03-29 |
Rich Felker | remove useless field in pthread struct (wasted a good... |
commit | commitdiff | tree | snapshot |
2011-03-28 |
Rich Felker | fix getc - the classic error of trying to store EOF... |
commit | commitdiff | tree | snapshot |
2011-03-28 |
Rich Felker | major stdio overhaul, using readv/writev, plus other... |
commit | commitdiff | tree | snapshot |
2011-03-26 |
Rich Felker | match glibc/lsb cancellation abi on i386 |
commit | commitdiff | tree | snapshot |
2011-03-25 |
Rich Felker | remove -Wno-pointer-sign example from dist/config.mak |
commit | commitdiff | tree | snapshot |
2011-03-25 |
Rich Felker | fix all implicit conversion between signed/unsigned... |
commit | commitdiff | tree | snapshot |
2011-03-25 |
Rich Felker | simplify and optimize FILE lock handling |
commit | commitdiff | tree | snapshot |
2011-03-25 |
Rich Felker | prepare pthread_spin_unlock for archs that need memory... |
commit | commitdiff | tree | snapshot |
2011-03-25 |
Rich Felker | optimize contended case for pthread_spin_trylock |
commit | commitdiff | tree | snapshot |
2011-03-25 |
Rich Felker | optimize spinlock spin |
commit | commitdiff | tree | snapshot |
2011-03-25 |
Rich Felker | fix non-atomicity of puts |
commit | commitdiff | tree | snapshot |
2011-03-24 |
Rich Felker | overhaul cancellation to fix resource leaks and dangero... |
commit | commitdiff | tree | snapshot |
2011-03-23 |
Rich Felker | very cheap double-free checks in malloc |
commit | commitdiff | tree | snapshot |
2011-03-20 |
Rich Felker | global cleanup to use the new syscall interface |
commit | commitdiff | tree | snapshot |
2011-03-20 |
Rich Felker | if returning errno value directly from a syscall, we... |
commit | commitdiff | tree | snapshot |
2011-03-20 |
Rich Felker | honor namespace for i386 syscall.h, even though it... |
commit | commitdiff | tree | snapshot |
2011-03-20 |
Rich Felker | fix typo in x86_64 part of syscall overhaul |
commit | commitdiff | tree | snapshot |
2011-03-20 |
Rich Felker | syscall overhaul part two - unify public and internal... |
commit | commitdiff | tree | snapshot |
2011-03-19 |
Rich Felker | remove comment cruft that got left behind in x86_64... |
commit | commitdiff | tree | snapshot |
2011-03-19 |
Rich Felker | add some ioctl stuff to sys/mount.h |
commit | commitdiff | tree | snapshot |
2011-03-19 |
Rich Felker | overhaul syscall interface |
commit | commitdiff | tree | snapshot |
2011-03-19 |
Rich Felker | some linux headers useful from user apps. |
commit | commitdiff | tree | snapshot |
2011-03-19 |
Rich Felker | various legacy and linux-specific stuff |
commit | commitdiff | tree | snapshot |
2011-03-18 |
Rich Felker | document changes for 0.7.1 v0.7.1 |
commit | commitdiff | tree | snapshot |
2011-03-18 |
Rich Felker | implement [v]swprintf |
commit | commitdiff | tree | snapshot |
2011-03-18 |
Rich Felker | implement wprintf family of functions |
commit | commitdiff | tree | snapshot |
2011-03-18 |
Rich Felker | fix broken wmemchr (unbounded search) |
commit | commitdiff | tree | snapshot |
2011-03-18 |
Rich Felker | implement robust mutexes |
commit | commitdiff | tree | snapshot |
2011-03-17 |
Rich Felker | avoid function call to pthread_self in mutex unlock |
commit | commitdiff | tree | snapshot |
2011-03-17 |
Rich Felker | reorder mutex struct fields to make room for pointers... |
commit | commitdiff | tree | snapshot |
2011-03-17 |
Rich Felker | unify lock and owner fields of mutex structure |
commit | commitdiff | tree | snapshot |
2011-03-17 |
Rich Felker | optimize contended normal mutex case; add int compare... |
commit | commitdiff | tree | snapshot |
2011-03-16 |
Rich Felker | simplify logic, slightly optimize contended case for... |
commit | commitdiff | tree | snapshot |
2011-03-16 |
Rich Felker | correct error returns for error-checking mutexes |
commit | commitdiff | tree | snapshot |
2011-03-16 |
Rich Felker | cut out a syscall on thread creation in the case where... |
commit | commitdiff | tree | snapshot |
2011-03-16 |
Rich Felker | don't expose EAGAIN, etc. from timed futex wait to... |
commit | commitdiff | tree | snapshot |
2011-03-16 |
Rich Felker | optimize file locking: avoid cache-polluting writes... |
commit | commitdiff | tree | snapshot |
2011-03-14 |
Rich Felker | partially-written draft of fmemopen, still in #if 0 |
commit | commitdiff | tree | snapshot |
2011-03-14 |
Rich Felker | remove some old cruft from sys/types.h |
commit | commitdiff | tree | snapshot |
2011-03-13 |
Rich Felker | misplaced & in times() made it fail to work, and clobbe... |
commit | commitdiff | tree | snapshot |
2011-03-13 |
Rich Felker | implement flockfile api, rework stdio locking |
commit | commitdiff | tree | snapshot |
2011-03-13 |
Rich Felker | pthread.h needs clockid_t |
commit | commitdiff | tree | snapshot |
2011-03-11 |
Rich Felker | document some additional important changes v0.7.0 |
commit | commitdiff | tree | snapshot |
2011-03-11 |
Rich Felker | update whatsnew file for release of 0.7.0 |
commit | commitdiff | tree | snapshot |
2011-03-11 |
Rich Felker | match dimensions so we can use all slots without invoki... |
commit | commitdiff | tree | snapshot |
2011-03-11 |
Rich Felker | implement dummy pthread_attr_[gs]etschedparam functions |
commit | commitdiff | tree | snapshot |
2011-03-11 |
Rich Felker | fix pthread_attr_* implementations to match corrected... |
commit | commitdiff | tree | snapshot |
2011-03-11 |
Rich Felker | fix missing ENOTSUP error code |
commit | commitdiff | tree | snapshot |
2011-03-11 |
Rich Felker | missing const in some pthread_attr_* prototypes |
commit | commitdiff | tree | snapshot |
2011-03-11 |
Rich Felker | formatting whatsnew file |
commit | commitdiff | tree | snapshot |
2011-03-11 |
Rich Felker | list major changes in preparation for release |
commit | commitdiff | tree | snapshot |
next |