summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorLines
2018-09-12improve machinery for ldso to report libc versionRich Felker-9/+4
2018-09-12make internal declarations for flockfile tracking functions checkableRich Felker-4/+5
2018-09-12make inadvertently exposed __h{create,delete,search}_r functions staticRich Felker-6/+6
2018-09-12make inadvertently exposed __pthread_{timed,try}join_np functions staticRich Felker-2/+2
2018-09-12use idiomatic weak alias approach for defining asctime_rRich Felker-33/+28
2018-09-12move and deduplicate declarations of __vdsosym to make it checkableRich Felker-4/+2
2018-09-12move and deduplicate declarations of __procfdname to make it checkableRich Felker-16/+5
2018-09-12fix issues from public functions defined without declaration visibleRich Felker-2/+22
2018-09-05remove leftover declarations for removed functions from pthread_impl.hRich Felker-4/+0
2018-09-05define and use internal macros for hidden visibility, weak refsRich Felker-125/+94
2018-09-04fix namespace violation for c11 mutex functionsRich Felker-1/+3
2018-09-04in pthread_mutex_timedlock, avoid repeatedly reading mutex type fieldRich Felker-3/+4
2018-09-04in pthread_mutex_trylock, EBUSY out more directly when possibleRich Felker-2/+2
2018-09-04fix mistake/cruft in 1.1.20 release notesRich Felker-1/+1
2018-09-04implement fexecve in terms of execveat when it existsJoseph C. Sible-0/+5
2018-09-04release 1.1.20v1.1.20Rich Felker-1/+78
2018-09-02fix stack-based oob memory clobber in resolver's result sortingRich Felker-1/+1
2018-09-01consistently use _NSIG/8 idiom for kernel sigset size in sigactionRich Felker-3/+3
2018-09-01always terminate by SIGABRT when abort is calledRich Felker-4/+40
2018-09-01optimize raise not to make a syscall for getting tidRich Felker-3/+1
2018-08-30prevent perror from clobbering stderr's orientationRich Felker-0/+8
2018-08-30prevent psignal/psiginfo from clobbering stderr orientation, errnoRich Felker-8/+21
2018-08-29make vfprintf set stream orientation even for zero-length outputRich Felker-1/+2
2018-08-29re-fix vfprintf temporary buffer logicRich Felker-2/+2
2018-08-29fix missing flush of stderr at exit if it was put in buffered modeRich Felker-0/+1
2018-08-29fix async thread cancellation on sh-fdpicRich Felker-0/+8
2018-08-29fix async thread cancellation on powerpc64Rich Felker-0/+7
2018-08-28vfwprintf: honor field width with 'c' format typeA. Wilcox-1/+4
2018-08-28fix several values reported by sysconfRich Felker-8/+11
2018-08-28fix return value of system on failure to spawn child processRich Felker-1/+1
2018-08-28set stream orientations in open_[w]memstreamRich Felker-0/+3
2018-08-28make fmemopen's w+ mode truncate the bufferRich Felker-0/+1
2018-08-28set errno when fileno is called on a FILE with no underlying fdRich Felker-4/+7
2018-08-28reject invalid arguments to pthread_barrierattr_setpsharedRich Felker-0/+1
2018-08-28rewrite __aeabi_read_tp in asmSzabolcs Nagy-12/+6
2018-08-28fix dubious char signedness check in limits.hRich Felker-1/+1
2018-08-28fix deadlock in async thread self-cancellationRich Felker-1/+5
2018-08-27time: fix incorrect DST offset when using POSIX timezones without DSTA. Wilcox-1/+1
2018-08-23fix tls access on arm targets before armv6kSzabolcs Nagy-1/+1
2018-08-23fix missing strerror text for EMULTIHOPRich Felker-0/+1
2018-08-23fix printf precision specifier for hex floats on non-ld80 archsRich Felker-0/+1
2018-08-22getopt: update optarg and optind correctly on missing argumentRich Felker-6/+6
2018-08-22fix FP_ILOGB0 and FP_ILOGBNAN definitions to be valid for use in #ifRich Felker-1/+1
2018-08-20remove erroneous SYMLINK_MAX definition from limits.h, pathconfRich Felker-2/+1
2018-08-18mips archs: fix runaway execution if start fn passed to clone returnsSegev Finer-3/+12
2018-08-16fix pthread_create return value with PTHREAD_EXPLICIT_SCHEDRich Felker-0/+1
2018-08-07fix sign of strftime %z output with offsets <1 hour west of UTCRich Felker-3/+2
2018-08-02fix musl-gcc wrapper to be compatible with default-pie gcc toolchainsRich Felker-2/+2
2018-07-27make pthread_attr_init honor defaults set by pthread_setattr_default_npRich Felker-4/+11
2018-07-23bsearch: simplify and optimizeFangrui Song-6/+6