about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* change stdio_ext __freading/__fwriting semantics slightlyRich Felker2012-06-171-2/+2
* fdopen should set errno when it fails due to invalid mode stringRich Felker2012-06-171-1/+4
* direct syscall to open in __init_security needs O_LARGEFILERich Felker2012-06-141-1/+1
* reorder exit code to defer stdio flush until after dtorsRich Felker2012-06-141-4/+1
* add timegm function (inverse of gmtime), nonstandardRich Felker2012-06-131-0/+9
* add init_module/delete_module syscall wrappersRich Felker2012-06-131-0/+11
* add (currently stubbed due to stubbed strverscmp) versionsort functionRich Felker2012-06-131-0/+8
* add deprecated capabilities functionsRich Felker2012-06-131-0/+11
* fix char signedness bug (arm-specific) in dynamic linkerRich Felker2012-06-091-1/+1
* add pthread_attr_setstack interface (and get)Rich Felker2012-06-094-10/+39
* fix scanning of "-0x" pseudo-hex float (must give negative zero)Rich Felker2012-06-081-1/+1
* fix %ls breakage in last printf fixRich Felker2012-06-081-2/+2
* fix printf %ls with precision limit over-read issueRich Felker2012-06-081-2/+2
* fix scanf bug reading literals after width-limited fieldRich Felker2012-06-071-0/+1
* treat failure of mprotect in map_library as a fatal load failureRich Felker2012-06-061-9/+9
* fix ctype abi junk (pointer should point to 0 slot, not -128 slot)Rich Felker2012-06-053-3/+3
* ensure that abort always worksRich Felker2012-06-021-0/+2
* add some ugly aliases for LSB ABI compatibilityRich Felker2012-06-027-0/+8
* increase default thread stack size to 80kRich Felker2012-06-021-1/+1
* remove implementation-reserved bits when saving signal maskRich Felker2012-06-021-1/+11
* remove no-longer-needed unblocking of signals in pthread_createRich Felker2012-06-021-1/+0
* add LSB abi junk for ctype functionsRich Felker2012-06-023-0/+104
* use fistpll mnemonic instead of fistpq (more widely supported) on x86_64 tooRich Felker2012-06-021-1/+1
* add LSB ABI __xstat, etc. junkRich Felker2012-05-314-0/+36
* enable LARGEFILE64 aliasesRich Felker2012-05-312-4/+1
* add ldd and main program loading support to dynamic linkerRich Felker2012-05-274-21/+89
* cleanup dynamic linker start code cruftRich Felker2012-05-273-13/+6
* fix overrun (n essentially ignored) in wcsncmpRich Felker2012-05-261-1/+1
* fix failure of mbsinit(0) (not UB; required to return nonzero)Rich Felker2012-05-261-1/+1
* fix failure of strrchr(str, 0)Rich Felker2012-05-261-1/+1
* avoid using pthread cleanup push/pop in stdio when not neededRich Felker2012-05-252-6/+14
* ensure pthread-internal signals are unblocked before threads are usedRich Felker2012-05-251-0/+1
* fix regex on armRich Felker2012-05-251-1/+1
* remove cruft from pthread structure (old cancellation stuff)Rich Felker2012-05-251-2/+0
* remove leftover cp_sp cruft from cancellation code, fix small bugRich Felker2012-05-251-3/+1
* avoid deprecated (by linux) alarm syscall; use setitimer insteadRich Felker2012-05-241-1/+4
* linux deprecated SYS_utime on some archs, so use SYS_utimes insteadRich Felker2012-05-241-1/+8
* fix bad opcode in arm syscall_cp_asmRich Felker2012-05-231-1/+1
* fix issue with longjmp out of signal handlers and cancellationRich Felker2012-05-234-52/+35
* simplify cancellation push/pop slightlyRich Felker2012-05-232-12/+9
* remove everything related to forkallRich Felker2012-05-223-77/+0
* fix typo in utimes function that made it mess up file timesRich Felker2012-05-211-1/+1
* fix out-of-bounds array access in pthread barriers on 64-bitRich Felker2012-05-211-1/+1
* fix misplaced semicolon in preprocessor directive (#undef h_errno)Rich Felker2012-05-161-1/+1
* remove some no-op end of string tests from regex parserRich Felker2012-05-131-4/+0
* another BRE fix: in ^*, * is literalRich Felker2012-05-131-0/+2
* let sysconf accurately report # of cpus availableRich Felker2012-05-131-2/+10
* use __h_errno_location for h_errnoRich Felker2012-05-122-0/+9
* search: add comments to tsearch_avl.cnsz2012-05-131-0/+6
* search: add tdestroy (gnu extension)nsz2012-05-131-0/+21