search: add comments to tsearch_avl.c
[musl] / src / internal /
2012-05-06 nszadd FORCE_EVAL macro to evaluate float expr for their...
2012-05-04 Rich Felkeroverhaul SSP support to use a real canary
2012-04-30 Rich Felkerfix off-by-one error that caused uninitialized memory...
2012-04-24 Rich Felkerditch the priority inheritance locks; use malloc's...
2012-04-24 Rich Felkernew internal locking primitive; drop spinlocks
2012-04-22 Rich Felkerremove redundant (unmaintained) check in floatscan
2012-04-21 Rich Felkermake floatscan correctly set errno for overflow/underflow
2012-04-21 Rich Felkerskip leading zeros even after decimal point in floatscan
2012-04-21 Rich Felkerfix overread (consuming an extra byte) scanning NAN
2012-04-19 Rich Felkerfix really bad breakage in strtol, etc.: failure to...
2012-04-18 Rich Felkerfix typo in exponent reading code or floats
2012-04-18 Rich Felkerfix failure to read infinity in scanf
2012-04-18 Rich Felkerfix failure of int parser to unget an initial mismatchi...
2012-04-16 Rich Felkeruse the new integer parser (FILE/shgetc based) for...
2012-04-16 Rich Felkernew scanf implementation and corresponding integer...
2012-04-16 Rich Felkerfix buggy limiter handling in shgetc
2012-04-16 Rich Felkerfix broken shgetc limiter logic (wasn't working)
2012-04-16 Rich Felkerfloatscan: fix incorrect count of leading nonzero digits
2012-04-13 Rich Felkeruse fast version of the int reading code for the high...
2012-04-13 Rich Felkeruse macros instead of inline functions in shgetc.h
2012-04-13 Rich Felkerfix spurious overflows in strtoull with small bases
2012-04-12 Rich Felkerremove magic numbers from floatscan
2012-04-12 Rich Felkeroptimize more integer cases in floatscan; comment the...
2012-04-12 Rich Felkerrevert invalid optimization in floatscan
2012-04-12 Rich Felkerfix stupid typo in floatscan that caused excess roundin...
2012-04-11 Rich FelkerMerge remote branch 'nsz/master'
2012-04-11 Rich Felkeroptimize floatscan downscaler to skip results that...
2012-04-11 Rich Felkersimplify/debloat radix point alignment code in floatscan
2012-04-11 Rich Felkeroptimize floatscan: avoid excessive upscaling
2012-04-11 Rich Felkerfix incorrect initial count in shgetc when data is...
2012-04-11 Rich Felkerfix bug parsing lone zero followed by junk, and hex...
2012-04-11 Rich Felkerfix float scanning of certain values ending in zeros
2012-04-11 Rich Felkerfix potential overflow in exponent reading
2012-04-11 Rich Felkerset errno properly when parsing floating point
2012-04-11 Rich Felkeradd "scan helper getc" and rework strtod, etc. to use it
2012-04-10 Rich Felkernew floating point parser/converter
2012-03-22 Rich Felkeradd creal/cimag macros in complex.h (and use them in...
2012-03-20 Rich FelkerMerge remote branch 'nsz/master'
2012-03-19 nszMerge branch 'master' of git://git.etalabs.net/musl
2012-03-19 nszdon't inline __rem_pio2l so the code size is smaller
2012-03-18 Rich Felkerfix loads of missing const in new libm, and some global...
2012-03-17 Rich Felkerfix namespace issues for lgamma, etc.
2012-03-13 Rich Felkerfirst commit of the new libm!
2012-03-02 Rich Felkerfix obscure bug in strtoull reading the highest 16...
2012-02-25 Rich Felkernew attempt at working around the gcc 3 visibility bug
2012-02-25 Rich Felkerremove useless attribute visibility from definitions
2012-02-24 Rich Felkercleanup and work around visibility bug in gcc 3 that...
2011-10-03 Rich Felkersynchronize cond var destruction with exiting waits
2011-09-28 Rich Felkerimprove pshared barriers
2011-09-27 Rich Felkerprocess-shared barrier support, based on discussion...
2011-09-26 Rich Felkerfix lost signals in cond vars
2011-09-26 Rich Felkercleanup various minor issues reported by nsz
2011-09-26 Rich Felkerredo cond vars again, use sequence numbers
2011-09-25 Rich Felkernew futex-requeue-based pthread_cond_broadcast implemen...
2011-09-23 Rich Felkerfix deadlock in condition wait whenever there are multi...
2011-09-18 Rich Felkerinitial commit of the arm port
2011-09-18 Rich Felkeroverhaul clone syscall wrapping
2011-08-23 Rich Felkersecurity hardening: ensure suid programs have valid...
2011-08-12 Rich Felkerpthread and synccall cleanup, new __synccall_wait op
2011-08-07 Rich Felkersimplify multi-threaded errno, eliminate useless functi...
2011-08-07 Rich Felkeruse weak aliases rather than function pointers to simpl...
2011-08-03 Rich Felkeroverhaul rwlocks to address several issues
2011-08-03 Rich Felkerunify and overhaul timed futex waits
2011-07-30 Rich Felkeradd proper fuxed-based locking for stdio
2011-07-30 Rich Felkernew attempt at making set*id() safe and robust
2011-07-25 Rich Felkercomment non-obvious de bruijn sequence code in int...
2011-07-15 Rich Felkerfix various bugs in new integer parser framework
2011-07-14 Rich Felkernew restartable integer parsing framework.
2011-06-15 Rich Felkerrestore use of .type in asm, but use modern @function...
2011-06-14 Rich Felkerfix race condition in pthread_kill
2011-06-14 Rich Felkerfix sigset macro for 64-bit systems (<< was overflowing...
2011-06-14 Rich Felkerremove all .size and .type directives for functions...
2011-05-30 Rich Felkerimplement uselocale function (minimal)
2011-05-08 Rich Felkeroptimize compound-literal sigset_t's not to contain...
2011-05-08 Rich Felkeroverhaul implementation-internal signal protections
2011-05-07 Rich Felkercompletely new barrier implementation, addressing major...
2011-05-02 Rich Felkerworkaround for preprocessor bug in pcc
2011-04-21 Rich Felkerfix minor bugs due to incorrect threaded-predicate...
2011-04-17 Rich Felkerclean up handling of thread/nothread mode, locking
2011-04-17 Rich Felkeroptimize cancellation enable/disable code
2011-04-17 Rich Felkeroverhaul pthread cancellation
2011-04-14 Rich Felkeruse a separate signal from SIGCANCEL for SIGEV_THREAD...
2011-04-09 Rich Felkergreatly improve SIGEV_THREAD timers
2011-04-07 Rich Felkermove rsyscall out of pthread_create module
2011-04-05 Rich Felkernew framework to inhibit thread cancellation when needed
2011-04-03 Rich Felkersimplify calling of timer signal handler
2011-04-03 Rich Felkersimplify pthread tsd key handling
2011-04-02 Rich Felkerreorganize the __libc structure for threaded performanc...
2011-03-30 Rich Felkeroptimize timer creation and possibly protect against...
2011-03-29 Rich Felkermajor improvements to cancellation handling
2011-03-29 Rich Felkersome preliminaries for adding POSIX timers
2011-03-29 Rich Felkerremove useless field in pthread struct (wasted a good...
2011-03-28 Rich Felkermajor stdio overhaul, using readv/writev, plus other...
2011-03-25 Rich Felkersimplify and optimize FILE lock handling
2011-03-24 Rich Felkeroverhaul cancellation to fix resource leaks and dangero...
2011-03-20 Rich Felkerglobal cleanup to use the new syscall interface
2011-03-20 Rich Felkersyscall overhaul part two - unify public and internal...
2011-03-19 Rich Felkerremove comment cruft that got left behind in x86_64...
2011-03-19 Rich Felkeroverhaul syscall interface
2011-03-18 Rich Felkerimplement [v]swprintf
next