about summary refs log tree commit diff
path: root/src/internal
Commit message (Expand)AuthorAgeFilesLines
...
* add "scan helper getc" and rework strtod, etc. to use itRich Felker2012-04-105-73/+111
* new floating point parser/converterRich Felker2012-04-102-0/+446
* add creal/cimag macros in complex.h (and use them in the functions defs)Rich Felker2012-03-221-8/+0
* don't inline __rem_pio2l so the code size is smallernsz2012-03-191-0/+1
* fix loads of missing const in new libm, and some global vars (?!) in powlRich Felker2012-03-181-2/+2
* fix namespace issues for lgamma, etc.Rich Felker2012-03-161-0/+2
* first commit of the new libm!Rich Felker2012-03-132-0/+323
* fix obscure bug in strtoull reading the highest 16 possible valuesRich Felker2012-03-021-1/+1
* new attempt at working around the gcc 3 visibility bugRich Felker2012-02-242-0/+7
* remove useless attribute visibility from definitionsRich Felker2012-02-241-1/+1
* cleanup and work around visibility bug in gcc 3 that affects x86_64Rich Felker2012-02-232-6/+11
* synchronize cond var destruction with exiting waitsRich Felker2011-10-021-0/+1
* improve pshared barriersRich Felker2011-09-281-1/+1
* process-shared barrier support, based on discussion with bdonlanRich Felker2011-09-271-3/+5
* fix lost signals in cond varsRich Felker2011-09-261-0/+1
* cleanup various minor issues reported by nszRich Felker2011-09-261-3/+3
* redo cond vars again, use sequence numbersRich Felker2011-09-261-3/+3
* new futex-requeue-based pthread_cond_broadcast implementationRich Felker2011-09-251-3/+6
* fix deadlock in condition wait whenever there are multiple waitersRich Felker2011-09-221-0/+1
* initial commit of the arm portRich Felker2011-09-181-0/+15
* overhaul clone syscall wrappingRich Felker2011-09-181-2/+1
* security hardening: ensure suid programs have valid stdin/out/errRich Felker2011-08-231-2/+4
* pthread and synccall cleanup, new __synccall_wait opRich Felker2011-08-122-0/+2
* simplify multi-threaded errno, eliminate useless function pointerRich Felker2011-08-061-2/+1
* use weak aliases rather than function pointers to simplify some codeRich Felker2011-08-061-2/+0
* overhaul rwlocks to address several issuesRich Felker2011-08-031-4/+2
* unify and overhaul timed futex waitsRich Felker2011-08-022-2/+4
* add proper fuxed-based locking for stdioRich Felker2011-07-303-6/+8
* new attempt at making set*id() safe and robustRich Felker2011-07-292-4/+5
* comment non-obvious de bruijn sequence code in int parserRich Felker2011-07-251-0/+2
* fix various bugs in new integer parser frameworkRich Felker2011-07-141-4/+7
* new restartable integer parsing framework.Rich Felker2011-07-142-0/+116
* restore use of .type in asm, but use modern @function (vs %function)Rich Felker2011-06-142-0/+2
* fix race condition in pthread_killRich Felker2011-06-141-0/+1
* fix sigset macro for 64-bit systems (<< was overflowing due to wrong type)Rich Felker2011-06-131-1/+1
* remove all .size and .type directives for functions from the asmRich Felker2011-06-132-4/+0
* implement uselocale function (minimal)Rich Felker2011-05-301-0/+2
* optimize compound-literal sigset_t's not to contain useless hurd bitsRich Felker2011-05-071-2/+4
* overhaul implementation-internal signal protectionsRich Felker2011-05-071-3/+6
* completely new barrier implementation, addressing major correctness issuesRich Felker2011-05-061-4/+4
* workaround for preprocessor bug in pccRich Felker2011-05-011-7/+7
* fix minor bugs due to incorrect threaded-predicate semanticsRich Felker2011-04-201-0/+1
* clean up handling of thread/nothread mode, lockingRich Felker2011-04-172-5/+4
* optimize cancellation enable/disable codeRich Felker2011-04-171-0/+1
* overhaul pthread cancellationRich Felker2011-04-173-8/+18
* use a separate signal from SIGCANCEL for SIGEV_THREAD timersRich Felker2011-04-141-0/+1
* greatly improve SIGEV_THREAD timersRich Felker2011-04-091-0/+1
* move rsyscall out of pthread_create moduleRich Felker2011-04-062-1/+5
* new framework to inhibit thread cancellation when neededRich Felker2011-04-051-0/+2
* simplify calling of timer signal handlerRich Felker2011-04-031-2/+1