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