summaryrefslogtreecommitdiff
path: root/src/internal
AgeCommit message (Expand)AuthorFilesLines
2012-11-08clean up sloppy nested inclusion from pthread_impl.hRich Felker1-8/+0
2012-11-08clean up stdio_impl.hRich Felker3-17/+2
2012-11-01fix more unused variable warningsRich Felker1-0/+1
2012-10-25use explicit visibility to optimize a few hot-path function callsRich Felker3-11/+13
2012-10-24greatly improve freopen behaviorRich Felker1-0/+1
2012-10-21accept "nan(n-char-sequence)" in strtod/scanf functionsRich Felker1-1/+19
2012-10-13workaround broken hidden-visibility handling in pccRich Felker1-1/+1
2012-10-11comment possibly-confusing i386 vsyscall asmRich Felker1-1/+13
2012-10-11i386 vsyscall support (vdso-provided sysenter/syscall instruction based)Rich Felker2-16/+59
2012-10-05support for TLS in dynamic-loaded (dlopen) modulesRich Felker2-3/+4
2012-10-04beginnings of full TLS support in shared librariesRich Felker1-1/+1
2012-10-04TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker1-0/+1
2012-09-29microblaze portRich Felker1-0/+13
2012-09-09add 7-arg syscall support for mipsRich Felker2-4/+8
2012-09-09fix broken mips syscall asmRich Felker1-2/+2
2012-09-08syscall organization overhaulRich Felker1-5/+138
2012-08-17fix float parsing logic for long decimal expansionsRich Felker1-1/+1
2012-08-11add bsd fgetln functionRich Felker1-1/+1
2012-08-09fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker1-2/+5
2012-07-27save AT_HWCAP from auxv for subsequent use in machine-specific codeRich Felker2-0/+3
2012-07-12fix several locks that weren't updated right for new futex-based __lockRich Felker1-3/+3
2012-07-12fix breakage of x86_64 sigaction from recent changes for mipsRich Felker1-1/+1
2012-07-11initial version of mips (o32) port, based on work by Richard Pennington (rdp)Rich Felker1-0/+22
2012-07-11use unsigned bitmask for consistency in ksigactionRich Felker1-1/+1
2012-07-11fix breakage from last commit: forgot to include ksigaction.hRich Felker1-0/+6
2012-06-19remove flush hook cruft that was never used from stdioRich Felker1-1/+1
2012-06-09add pthread_attr_setstack interface (and get)Rich Felker1-1/+2
2012-06-08fix scanning of "-0x" pseudo-hex float (must give negative zero)Rich Felker1-1/+1
2012-06-02increase default thread stack size to 80kRich Felker1-1/+1
2012-05-31enable LARGEFILE64 aliasesRich Felker1-2/+1
2012-05-25remove cruft from pthread structure (old cancellation stuff)Rich Felker1-2/+0
2012-05-22remove everything related to forkallRich Felker1-1/+0
2012-05-21fix out-of-bounds array access in pthread barriers on 64-bitRich Felker1-1/+1
2012-05-06add FORCE_EVAL macro to evaluate float expr for their side effectnsz1-0/+13
2012-05-03overhaul SSP support to use a real canaryRich Felker1-0/+4
2012-04-30fix off-by-one error that caused uninitialized memory read in floatscanRich Felker1-1/+1
2012-04-24ditch the priority inheritance locks; use malloc's version of lockRich Felker2-3/+3
2012-04-24new internal locking primitive; drop spinlocksRich Felker1-1/+2
2012-04-22remove redundant (unmaintained) check in floatscanRich Felker1-3/+3
2012-04-21make floatscan correctly set errno for overflow/underflowRich Felker1-4/+16
2012-04-21skip leading zeros even after decimal point in floatscanRich Felker1-4/+9
2012-04-21fix overread (consuming an extra byte) scanning NANRich Felker1-1/+1
2012-04-19fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker3-4/+5
2012-04-18fix typo in exponent reading code or floatsRich Felker1-1/+1
2012-04-17fix failure to read infinity in scanfRich Felker1-3/+4
2012-04-17fix failure of int parser to unget an initial mismatching characterRich Felker1-0/+1
2012-04-16use the new integer parser (FILE/shgetc based) for strtol, wcstol, etc.Rich Felker2-127/+0
2012-04-16new scanf implementation and corresponding integer parser/converterRich Felker3-0/+107
2012-04-16fix buggy limiter handling in shgetcRich Felker1-4/+3
2012-04-16fix broken shgetc limiter logic (wasn't working)Rich Felker2-2/+5