about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* remove a_ctz_l from arch specific atomic_arch.hAndre McCurdy2018-04-191-19/+23
* fix out of bounds write for zero length buffer in gethostnameMarc André Tanner2018-04-191-1/+1
* add support for caller-provided buffers to setvbufRich Felker2018-04-181-11/+14
* clean up allocation/setup logic for open_[w]memstreamRich Felker2018-04-182-38/+50
* clean up allocation/setup logic for fmemopenRich Felker2018-04-181-21/+31
* minor cleanup in fopencookieRich Felker2018-04-181-5/+2
* allow interposition/replacement of allocator (malloc)Rich Felker2018-04-184-23/+30
* refactor flockfile not to duplicate lock mechanism logicRich Felker2018-04-182-12/+14
* fix stdio lock dependency on read-after-free not faultingRich Felker2018-04-183-20/+24
* remove unused __brk function/source fileRich Felker2018-04-171-7/+0
* comment __malloc_donate overflow logicRich Felker2018-04-171-0/+3
* ldso, malloc: implement reclaim_gaps via __malloc_donateAlexander Monakov2018-04-171-18/+43
* malloc: fix an over-allocation bugAlexander Monakov2018-04-171-4/+4
* fix return value of nice functionRich Felker2018-04-171-5/+9
* optimize malloc0Alexander Monakov2018-04-111-6/+23
* fix incorrect results for catan with some inputsRich Felker2018-04-111-13/+1
* fix wrong result in casin and many related complex functionsRich Felker2018-04-093-3/+6
* implement wcsftime padding specifier extensionsSamuel Holland2018-04-071-3/+5
* prevent bypass of guarantee that suids start with fd 0/1/2 openRich Felker2018-04-051-0/+2
* fix fmaf wrong resultSzabolcs Nagy2018-04-021-1/+1
* fix nl_langinfo_l(CODESET, loc) reporting wrong locale's valueRich Felker2018-03-071-1/+1
* add public interface headers to implementation filesRich Felker2018-02-256-0/+11
* fix aliasing violations in fgetpos/fsetposRich Felker2018-02-242-2/+2
* use idiomatic safe form for FUNLOCK macroRich Felker2018-02-241-1/+1
* in vswprintf, initialize the FILE rather than memset-and-assignRich Felker2018-02-241-9/+8
* remove unused MIN macro from getdelim source fileRich Felker2018-02-241-2/+0
* remove useless null check before call to free in fcloseRich Felker2018-02-241-1/+1
* remove useless and confusing parentheses in stdio __towrite functionRich Felker2018-02-241-1/+1
* avoid use of readv syscall in __stdio_read backend when not neededRich Felker2018-02-241-1/+2
* consistently return number of bytes read from stdio read backendRich Felker2018-02-242-2/+2
* remove obfuscated flags bit-twiddling logic in __stdio_readRich Felker2018-02-241-1/+1
* fix getopt wrongly treating colons in optstring as valid option charsRich Felker2018-02-241-1/+1
* add getentropy functionRich Felker2018-02-231-0/+31
* add getrandom syscall wrapperHauke Mehrtens2018-02-221-0/+7
* convert execvp error handling to switch statementRich Felker2018-02-211-2/+9
* fix execvp failing on not-dir entries in PATH.Przemyslaw Pawelczyk2018-02-211-1/+1
* fix incorrect overflow check for allocation in fmemopenRich Felker2018-02-111-1/+1
* make getcwd fail if it cannot obtain an absolute pathDmitry V. Levin2018-02-071-1/+7
* adjust strftime + modifier to match apparent intent of POSIXRich Felker2018-02-061-6/+12
* fix strftime field widths with %F format and zero yearRich Felker2018-02-051-1/+2
* document pthread structure ABI constraints in commentsRich Felker2018-02-051-0/+7
* re-fix child reaping in wordexpAlexander Monakov2018-02-051-7/+1
* revert regression in faccessat AT_EACCESS robustnessRich Felker2018-02-051-21/+14
* store pthread stack guard sizes for pthread_getattr_npWilliam Pitcock2018-02-033-1/+4
* getopt_long: accept prefix match of long options containing equals signsSamuel Holland2018-01-311-1/+2
* fix getopt_long arguments to partial matchesSamuel Holland2018-01-311-1/+3
* fix printf alt-form octal with value 0 and no explicit precisionRich Felker2018-01-101-2/+2
* revise the definition of multiple basic locks in the codeJens Gustedt2018-01-0915-16/+16
* consistently use the LOCK an UNLOCK macrosJens Gustedt2018-01-096-12/+12
* new lock algorithm with state and congestion count in one atomic intJens Gustedt2018-01-093-8/+58