about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* fix posix_fadvise syscall args on powerpc, unify with arm fixRich Felker2016-07-012-12/+8
* pthread: implement try/timed join variantsBobby Bingham2016-06-301-3/+17
* fix misordered syscall arguments for posix_fadvise on armRich Felker2016-06-291-0/+12
* in posix_fadvise, don't bypass __syscall macro infrastructureRich Felker2016-06-291-1/+1
* refactor name_from_dns in hostname lookup backendNatanael Copa2016-06-291-14/+13
* in performing dns lookups, check result from res_mkqueryNatanael Copa2016-06-291-0/+4
* fix misaligned address buffers in gethostbyname[2][_r] resultsRich Felker2016-06-271-7/+7
* fix failure to obtain EOWNERDEAD status for process-shared robust mutexesRich Felker2016-06-273-3/+3
* remove comments on copyright status from UTF-8 implementation filesRich Felker2016-06-2113-78/+0
* fix a64l undefined behavior on ILP32 archs, wrong results on LP64 archsRich Felker2016-05-231-3/+6
* fix the use of uninitialized value in regcompSzabolcs Nagy2016-05-221-0/+2
* add powerpc64 portBobby Bingham2016-05-0811-0/+394
* fix incorrect protocol name and number for egpAndrew Kelley2016-05-041-1/+1
* fix FILE buffer underflow in ungetwcRich Felker2016-04-261-3/+3
* fix thread structure/dtv-pointer corruption on powerpcRich Felker2016-04-251-0/+5
* remove dead store in res_msendPetr Vaněk2016-04-181-1/+0
* add mips n32 port (ILP32 ABI for mips64)Rich Felker2016-04-1812-0/+335
* fix read past end of haystack buffer for short needles in memmemRich Felker2016-04-011-0/+1
* fix undefined pointer comparison in stdio-internal __toreadRich Felker2016-03-281-1/+1
* fix gethostbyaddr_r to fill struct hostent.h_length as appropriateTimo Teräs2016-03-241-0/+1
* fix padding string formats to width in wide printf variantsRich Felker2016-03-161-4/+4
* add powerpc soft-float supportFelix Fietkau2016-03-064-34/+49
* env: avoid leaving dangling pointers in __env_mapAlexander Monakov2016-03-061-0/+1
* add mips64 portRich Felker2016-03-0612-0/+338
* generalize mips-specific reloc code not to hard-code sym/type encodingRich Felker2016-03-061-0/+2
* math: fix expf(-NAN) and exp2f(-NAN) to return -NAN instead of 0Szabolcs Nagy2016-03-042-0/+4
* add sched_getcpu vDSO supportNathan Zadoks2016-03-021-0/+31
* add sched_getcpuNathan Zadoks2016-03-021-0/+13
* fix ^* at the start of a complete BRESzabolcs Nagy2016-03-021-0/+4
* fix * at the start of a BRE subexpressionSzabolcs Nagy2016-03-021-4/+0
* explicitly include stdio.h to get EOF definition needed by wctobMichael Meeuwisse2016-03-021-0/+1
* handle non-matching address family entries in hosts fileRich Felker2016-03-021-3/+11
* allow implementing a_cas_p with pointer-sized ll/scBobby Bingham2016-02-231-0/+18
* work around regression building for armhf with clang (compiler bug)Rich Felker2016-02-192-2/+2
* improve macro logic for enabling arm math asmRich Felker2016-02-182-2/+2
* in crypt-sha*, reject excessive rounds as error rather than clampingRich Felker2016-02-162-2/+2
* fix unlikely corner cases in getopt's message printingRich Felker2016-02-161-2/+2
* fix assumption in fputs that fwrite returning 0 implies an errorRich Felker2016-02-161-1/+2
* fix return value for fread/fwrite when size argument is 0Rich Felker2016-02-102-0/+2
* fix line-buffered flush omission for odd usage of putc-family functionsRich Felker2016-02-101-1/+2
* fix failed write reporting by fwrite in line-buffered modeRich Felker2016-02-101-2/+2
* remove workaround for broken mips assemblersRich Felker2016-02-081-5/+1
* in mips cancellable syscall asm, don't assume gp register is validRich Felker2016-02-041-2/+13
* avoid using signals when a thread attempts to cancel itselfRich Felker2016-02-041-0/+1
* fix malloc_usable_size for NULL inputSzabolcs Nagy2016-01-311-1/+1
* regex: increase the stack tre uses for tnfa creationSzabolcs Nagy2016-01-311-1/+1
* ldso: fix GDB dynamic linker info on MIPSFelix Fietkau2016-01-301-0/+4
* regex: simplify the {,} repetition parsing logicSzabolcs Nagy2016-01-301-20/+19
* regex: treat \+, \? as repetitions in BRESzabolcs Nagy2016-01-301-1/+5
* regex: rewrite the repetition parsing codeSzabolcs Nagy2016-01-301-30/+29