Age | Commit message (Expand) | Author | Files | Lines |
2014-10-20 | manually "shrink wrap" fast path in pthread_once | Rich Felker | 1 | -8/+12 |
2014-10-14 | release 1.1.5v1.1.5 | Rich Felker | 2 | -1/+39 |
2014-10-14 | suppress macro definitions of ctype functions under C++ | Rich Felker | 3 | -0/+7 |
2014-10-13 | implement uchar.h (C11 UTF-16/32 conversion) interfaces | Rich Felker | 7 | -5/+109 |
2014-10-13 | eliminate global waiters count in pthread_once | Rich Felker | 1 | -9/+13 |
2014-10-10 | fix missing barrier in pthread_once/call_once shortcut path | Rich Felker | 1 | -2/+6 |
2014-10-10 | add explicit barrier operation to internal atomic.h API | Rich Felker | 9 | -6/+33 |
2014-10-09 | fix handling of negative offsets in timezone spec strings | Rich Felker | 1 | -10/+7 |
2014-10-08 | add new linux file sealing api to fcntl.h | Szabolcs Nagy | 1 | -0/+7 |
2014-10-08 | add new IPV6_AUTOFLOWLABEL socket option in netinet/in.h | Szabolcs Nagy | 1 | -0/+1 |
2014-10-08 | add new syscall numbers for seccomp, getrandom, memfd_create | Szabolcs Nagy | 8 | -0/+50 |
2014-10-08 | always provide __fpclassifyl and __signbitl definitions | Rich Felker | 2 | -1/+9 |
2014-10-06 | ignore access mode bits of flags in mkostemps and functions that use it | Rich Felker | 1 | -0/+1 |
2014-10-04 | fix handling of odd lengths in swab function | Rich Felker | 1 | -1/+1 |
2014-09-22 | fix incorrect sequence generation in *rand48 prng functions | Rich Felker | 1 | -2/+2 |
2014-09-19 | fix linked list corruption in flockfile lists | Rich Felker | 1 | -0/+1 |
2014-09-18 | math: fix exp10 not to raise invalid exception on NaN | Szabolcs Nagy | 3 | -4/+13 |
2014-09-16 | fix overflow corner case in strtoul-family functions | Rich Felker | 1 | -0/+1 |
2014-09-13 | rewrite the regex pattern parser in regcomp | Szabolcs Nagy | 1 | -1081/+634 |
2014-09-11 | fix C++ incompatibility in i386 definition of max_align_t | Rich Felker | 1 | -0/+4 |
2014-09-10 | add _DEFAULT_SOURCE feature profile as an alias for _BSD_SOURCE | Rich Felker | 1 | -0/+4 |
2014-09-10 | fix _ALL_SOURCE logic to avoid possible redefinition of _GNU_SOURCE | Rich Felker | 1 | -1/+1 |
2014-09-10 | fix places where _BSD_SOURCE failed to yield a superset of _XOPEN_SOURCE | Rich Felker | 4 | -8/+2 |
2014-09-08 | fix exp10l.c to include float.h | Szabolcs Nagy | 1 | -0/+1 |
2014-09-08 | prune math code on archs with binary64 long double | Szabolcs Nagy | 2 | -0/+10 |
2014-09-08 | add new F_OFD_* macros to fcntl.h (open file description locks) | Szabolcs Nagy | 1 | -0/+4 |
2014-09-07 | add C11 thread creation and related thread functions | Rich Felker | 10 | -7/+84 |
2014-09-06 | add C11 condition variable functions | Jens Gustedt | 6 | -0/+57 |
2014-09-06 | add C11 mutex functions | Jens Gustedt | 6 | -0/+69 |
2014-09-06 | add C11 thread functions operating on tss_t and once_flag | Jens Gustedt | 5 | -0/+42 |
2014-09-06 | add threads.h and needed per-arch types for mtx_t and cnd_t | Rich Felker | 10 | -0/+103 |
2014-09-06 | use weak symbols for the POSIX functions that will be used by C threads | Jens Gustedt | 15 | -29/+76 |
2014-09-06 | add C11 timespec_get function, with associated time.h changes for C11 | Rich Felker | 2 | -1/+15 |
2014-09-06 | fix non-static dummy function that slipped in with locale implementation | Rich Felker | 1 | -1/+1 |
2014-09-05 | fix macros for LFS *64_t types in sys/stat.h, sys/types.h, glob.h | Szabolcs Nagy | 3 | -2/+3 |
2014-09-05 | add missing legacy LFS *64 symbol aliases | Szabolcs Nagy | 8 | -0/+23 |
2014-09-05 | fix memory leak in regexec when input contains illegal sequence | Szabolcs Nagy | 1 | -5/+6 |
2014-09-05 | fix off-by-one in bounds check in fpathconf | Rich Felker | 1 | -1/+1 |
2014-09-05 | fix potential read past end of buffer in getnameinfo service name lookup | Rich Felker | 1 | -1/+1 |
2014-09-05 | remove incorrect and useless check in network service name lookup code | Rich Felker | 1 | -1/+0 |
2014-09-05 | fix case mapping for U+00DF (ß) | Rich Felker | 2 | -2/+1 |
2014-09-05 | make non-waiting paths of sem_[timed]wait and pthread_join cancelable | Rich Felker | 2 | -0/+3 |
2014-09-05 | remove an extra layer of buffer copying in getnameinfo reverse dns | Rich Felker | 1 | -3/+2 |
2014-09-04 | fix multiple stdio functions' behavior on zero-length operations | Rich Felker | 4 | -9/+7 |
2014-09-04 | suppress null termination when fgets reads EOF with no data | Rich Felker | 1 | -1/+1 |
2014-09-04 | fix dn_expand empty name handling and offsets to 0 | Szabolcs Nagy | 1 | -6/+9 |
2014-08-27 | add static_assert and hide noreturn, alignas, alignof from C++ | Szabolcs Nagy | 3 | -0/+11 |
2014-08-27 | add C11 floating-point characteristic macros to float.h | Szabolcs Nagy | 1 | -0/+7 |
2014-08-25 | add malloc_usable_size function and non-stub malloc.h | Rich Felker | 2 | -0/+42 |
2014-08-25 | refrain from spinning on locks when there is already a waiter | Rich Felker | 5 | -5/+5 |