summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorLines
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 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-20remove erroneous SYMLINK_MAX definition from limits.h, pathconfRich Felker-1/+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-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
2018-07-18remove spurious declaration of __getdents from readdir.cRich Felker-2/+0
2018-07-18fix regression in alignment of dirent structs produced by readdirRich Felker-1/+7
2018-07-14implement getaddrinfo's AI_ADDRCONFIG flagRich Felker-0/+39
2018-07-13fix writes outside buffer by ungetc after setvbufRich Felker-1/+1
2018-07-11resolver: don't depend on v4mapped ipv6 to probe routability of v4 addrsRich Felker-15/+32
2018-07-02optimize explicit_bzero for sizeAlexander Monakov-1/+1
2018-06-26fix missing timeout argument to futex syscall in __futexwaitPatrick Oppenlander-2/+2
2018-06-26add explicit_bzero implementationDavid Carlier-0/+8
2018-06-26inet_ntop: do not compress single zeros in IPv6Arthur Jones-1/+1
2018-06-26strftime: fix underlying format string in %z formatDaniel Sabogal-1/+1
2018-06-26resolver: omit final dot (root/suppress-search) in canonical nameRich Felker-0/+4
2018-06-20add memfd_create syscall wrapperSzabolcs Nagy-0/+8
2018-06-20add mlock2 linux syscall wrapperSzabolcs Nagy-0/+10
2018-06-20work around broken kernel struct ipc_perm on some big endian archsRich Felker-6/+72
2018-06-19add m68k portRich Felker-0/+224
2018-06-14add support for m68k 80-bit long double variantRich Felker-2/+21
2018-06-02fix TLS layout of TLS variant I when there is a gap above TPSzabolcs Nagy-5/+10
2018-06-01fix output size handling for multi-unicode-char big5-hkscs charactersRich Felker-5/+13
2018-06-01fix iconv mapping of big5-hkscs characters that map to two unicode charsRich Felker-1/+1
2018-05-09fix iconv conversion to UTF-32 with implicit (big) endiannessWill Dietz-0/+2
2018-05-09fix iconv buffer overflow converting to legacy JIS-based encodingsWill Dietz-0/+1
2018-05-09make linking of thread-start with explicit scheduling conditionalRich Felker-28/+36
2018-05-09improve design of thread-start with explicit scheduling attributesRich Felker-23/+39
2018-05-07clean up and reduce size of internal pthread structureRich Felker-7/+9
2018-05-05improve joinable/detached thread state handlingRich Felker-24/+33
2018-05-05improve pthread_exit synchronization with functions targeting tidRich Felker-17/+18
2018-05-04remove incorrect ESRCH error from pthread_killRich Felker-1/+2
2018-05-02use a dedicated futex object for pthread_join instead of tid fieldRich Felker-5/+8
2018-05-01optimize sigisemptysetRich Felker-2/+3
2018-05-01avoid excessive stack usage in getcwdRich Felker-2/+2
2018-04-27getopt_long_only: don't prefix-match long-options that match short onesRich Felker-2/+15
2018-04-19reintroduce hardening against partially-replaced allocatorRich Felker-5/+13
2018-04-19return chunks split off by memalign using __bin_chunk instead of freeRich Felker-7/+8
2018-04-19using malloc implementation types/macros/idioms for memalignRich Felker-20/+22
2018-04-19move malloc implementation types and macros to an internal headerRich Felker-37/+40
2018-04-19revert detection of partially-replaced allocatorRich Felker-15/+6