summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2014-09-04suppress null termination when fgets reads EOF with no dataRich Felker1-1/+1
2014-09-04fix dn_expand empty name handling and offsets to 0Szabolcs Nagy1-6/+9
2014-08-25add malloc_usable_size function and non-stub malloc.hRich Felker1-0/+17
2014-08-25refrain from spinning on locks when there is already a waiterRich Felker5-5/+5
2014-08-25spin before waiting on futex in mutex and rwlock lock operationsRich Felker3-0/+20
2014-08-25spin in sem_[timed]wait before performing futex waitRich Felker1-0/+5
2014-08-25sanitize number of spins in userspace before futex waitRich Felker2-2/+2
2014-08-23fix false ownership of stdio FILEs due to tid reuseRich Felker6-2/+40
2014-08-22fix fallback checks for kernels without private futex supportRich Felker5-5/+5
2014-08-22fix use of uninitialized memory with application-provided thread stacksRich Felker1-0/+2
2014-08-18further simplify and optimize new cond varRich Felker1-29/+21
2014-08-18simplify and improve new cond var implementationRich Felker1-40/+22
2014-08-17redesign cond var implementation to fix multiple issuesRich Felker6-93/+213
2014-08-17fix possible failure-to-wake deadlock with robust mutexesRich Felker1-1/+4
2014-08-17make pointers used in robust list volatileRich Felker4-11/+18
2014-08-16fix robust mutex unrecoverable status, and related clean-upRich Felker3-12/+4
2014-08-16fix false ownership of mutexes due to tid reuse, using robust listRich Felker4-23/+26
2014-08-16optimize locking against vm changes for mmap/munmapRich Felker2-8/+7
2014-08-16enable private futex for process-local robust mutexesRich Felker3-1/+25
2014-08-15make futex operations use private-futex mode when possibleRich Felker23-66/+82
2014-08-13fix #ifdef inside a macro argument list in __init_tls.cSzabolcs Nagy1-4/+3
2014-08-13add inline isspace in ctype.h as an optimizationSzabolcs Nagy2-8/+1
2014-08-08add dlerror message for static-linked dlsym failureRich Felker1-0/+2
2014-08-08fix dlerror when using dlopen with a static libcClément Vasseur1-0/+2
2014-08-08make endmntent function handle null argumentTimo Teräs1-1/+1
2014-07-31harden locale name handling and prevent slashes in LC_MESSAGESRich Felker1-3/+3
2014-07-31implement ffsl and ffsll functionsRich Felker2-0/+14
2014-07-30add framework for mmap2 syscall unit to vary by archRich Felker2-2/+7
2014-07-30plural rule evaluator rewrite for dcngettextSzabolcs Nagy1-128/+106
2014-07-29reimplement if_nameindex and getifaddrs using netlinkTimo Teräs4-184/+411
2014-07-29tweaks to plural rules evaluatorSzabolcs Nagy1-54/+44
2014-07-29harden dcngettext plural processingRich Felker1-2/+3
2014-07-29harden mo file processing for locale/translationsRich Felker1-2/+6
2014-07-28implement non-default plural rules for ngettext translationsRich Felker2-8/+243
2014-07-27implement gettext message translation functionsRich Felker4-68/+271
2014-07-26add support for LC_TIME and LC_MESSAGES translationsRich Felker7-13/+23
2014-07-26add missing yes/no strings to nl_langinfoRich Felker1-2/+2
2014-07-26fix nl_langinfo table for LC_TIME era-related itemsRich Felker1-1/+2
2014-07-26implement mo file string lookup for translationsRich Felker4-0/+71
2014-07-24implement locale file loading and state for remaining locale categoriesRich Felker4-2/+80
2014-07-24fix locale environment variable logic for empty stringsRich Felker1-3/+3
2014-07-19add issetugid function to check for elevated privilegeBrent Cook1-0/+7
2014-07-18fix missing flags arg to fstatat syscall in fstat fallback pathRich Felker1-1/+1
2014-07-18add or1k (OpenRISC 1000) architecture portStefan Kristiansson10-0/+187
2014-07-17provide getauxval(AT_SECURE) even if it is missing from the aux vectorRich Felker1-0/+1
2014-07-17remove useless infinite loop from end of exit functionRich Felker1-1/+0
2014-07-17fix crash in regexec for nonzero nmatch argument with REG_NOSUBRich Felker1-0/+1
2014-07-16work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1Rich Felker7-9/+9
2014-07-16simplify __stdio_exit static linking logicRich Felker4-16/+12
2014-07-11implement the LOG_CONS option in syslogRich Felker1-1/+9