Age | Commit message (Expand) | Author | Files | Lines |
2018-08-30 | prevent perror from clobbering stderr's orientation | Rich Felker | 1 | -0/+8 |
2018-08-30 | prevent psignal/psiginfo from clobbering stderr orientation, errno | Rich Felker | 2 | -8/+21 |
2018-08-29 | make vfprintf set stream orientation even for zero-length output | Rich Felker | 1 | -1/+2 |
2018-08-29 | re-fix vfprintf temporary buffer logic | Rich Felker | 1 | -2/+2 |
2018-08-29 | fix missing flush of stderr at exit if it was put in buffered mode | Rich Felker | 1 | -0/+1 |
2018-08-29 | fix async thread cancellation on sh-fdpic | Rich Felker | 2 | -0/+8 |
2018-08-29 | fix async thread cancellation on powerpc64 | Rich Felker | 1 | -0/+7 |
2018-08-28 | vfwprintf: honor field width with 'c' format type | A. Wilcox | 1 | -1/+4 |
2018-08-28 | fix several values reported by sysconf | Rich Felker | 1 | -8/+11 |
2018-08-28 | fix return value of system on failure to spawn child process | Rich Felker | 1 | -1/+1 |
2018-08-28 | set stream orientations in open_[w]memstream | Rich Felker | 2 | -0/+3 |
2018-08-28 | make fmemopen's w+ mode truncate the buffer | Rich Felker | 1 | -0/+1 |
2018-08-28 | set errno when fileno is called on a FILE with no underlying fd | Rich Felker | 1 | -4/+7 |
2018-08-28 | reject invalid arguments to pthread_barrierattr_setpshared | Rich Felker | 1 | -0/+1 |
2018-08-28 | rewrite __aeabi_read_tp in asm | Szabolcs Nagy | 2 | -12/+6 |
2018-08-28 | fix dubious char signedness check in limits.h | Rich Felker | 1 | -1/+1 |
2018-08-28 | fix deadlock in async thread self-cancellation | Rich Felker | 1 | -1/+5 |
2018-08-27 | time: fix incorrect DST offset when using POSIX timezones without DST | A. Wilcox | 1 | -1/+1 |
2018-08-23 | fix tls access on arm targets before armv6k | Szabolcs Nagy | 1 | -1/+1 |
2018-08-23 | fix missing strerror text for EMULTIHOP | Rich Felker | 1 | -0/+1 |
2018-08-23 | fix printf precision specifier for hex floats on non-ld80 archs | Rich Felker | 1 | -0/+1 |
2018-08-22 | getopt: update optarg and optind correctly on missing argument | Rich Felker | 1 | -6/+6 |
2018-08-22 | fix FP_ILOGB0 and FP_ILOGBNAN definitions to be valid for use in #if | Rich Felker | 1 | -1/+1 |
2018-08-20 | remove erroneous SYMLINK_MAX definition from limits.h, pathconf | Rich Felker | 2 | -2/+1 |
2018-08-18 | mips archs: fix runaway execution if start fn passed to clone returns | Segev Finer | 3 | -3/+12 |
2018-08-16 | fix pthread_create return value with PTHREAD_EXPLICIT_SCHED | Rich Felker | 1 | -0/+1 |
2018-08-07 | fix sign of strftime %z output with offsets <1 hour west of UTC | Rich Felker | 1 | -3/+2 |
2018-08-02 | fix musl-gcc wrapper to be compatible with default-pie gcc toolchains | Rich Felker | 1 | -2/+2 |
2018-07-27 | make pthread_attr_init honor defaults set by pthread_setattr_default_np | Rich Felker | 3 | -4/+11 |
2018-07-23 | bsearch: simplify and optimize | Fangrui Song | 1 | -6/+6 |
2018-07-20 | move inclusion of linux headers for kd.h, soundcard.h, vt.h to bits | midipix | 6 | -3/+6 |
2018-07-20 | remove inclusion guard hacks for sys/kd.h | midipix | 1 | -7/+0 |
2018-07-18 | remove spurious declaration of __getdents from readdir.c | Rich Felker | 1 | -2/+0 |
2018-07-18 | fix regression in alignment of dirent structs produced by readdir | Rich Felker | 2 | -1/+7 |
2018-07-17 | add support for arch-specific ptrace command macros | Szabolcs Nagy | 12 | -0/+123 |
2018-07-17 | sys/ptrace.h: add missing PTRACE_EVENT_STOP | Szabolcs Nagy | 1 | -0/+1 |
2018-07-17 | uchar.h: define char16_t and char32_t for old c++ | Szabolcs Nagy | 1 | -1/+3 |
2018-07-16 | block dlopen of libraries with initial-exec refs to dynamic TLS | Rich Felker | 1 | -0/+8 |
2018-07-16 | fix inefficient choice of tlsdesc function due to off-by-one | Rich Felker | 1 | -1/+1 |
2018-07-14 | implement getaddrinfo's AI_ADDRCONFIG flag | Rich Felker | 1 | -0/+39 |
2018-07-13 | fix writes outside buffer by ungetc after setvbuf | Rich Felker | 1 | -1/+1 |
2018-07-12 | add ST_RELATIME to statvfs.h | Rich Felker | 1 | -0/+1 |
2018-07-11 | resolver: don't depend on v4mapped ipv6 to probe routability of v4 addrs | Rich Felker | 1 | -15/+32 |
2018-07-02 | optimize explicit_bzero for size | Alexander Monakov | 1 | -1/+1 |
2018-06-28 | avoid spurious dso matches by dladdr outside bounds of load segments | Rich Felker | 1 | -1/+10 |
2018-06-28 | make dladdr consistently produce the first symbol in presence of aliases | Rich Felker | 1 | -1/+1 |
2018-06-28 | fix symtab-order-dependent spurious matches in dladdr | Rich Felker | 1 | -5/+8 |
2018-06-27 | correctly handle non-matching symbols in dladdr | Rich Felker | 1 | -4/+13 |
2018-06-27 | avoid using undefined pointer arithmetic in dladdr | Rich Felker | 1 | -8/+9 |
2018-06-26 | fix missing timeout argument to futex syscall in __futexwait | Patrick Oppenlander | 1 | -2/+2 |