Age | Commit message (Expand) | Author | Files | Lines |
2020-11-22 | parse v3 or future-unknown zoneinfo file versions as v2+ | Rich Felker | 1 | -1/+1 |
2020-11-22 | explicitly prefer 64-bit/v2 zoneinfo tables | Rich Felker | 1 | -1/+1 |
2020-11-11 | lift child restrictions after multi-threaded fork | Rich Felker | 1 | -0/+2 |
2020-11-11 | convert malloc use under libc-internal locks to use internal allocator | Rich Felker | 1 | -0/+5 |
2020-10-28 | add support for SIGEV_THREAD_ID timers | James Y Knight | 1 | -2/+6 |
2020-10-14 | drop use of pthread_once in timer_create | Rich Felker | 1 | -10/+7 |
2020-10-14 | remove unused SIGTIMER handler in timer_create | Rich Felker | 1 | -6/+1 |
2020-03-21 | fix parsing offsets after long timezone names | Samuel Holland | 1 | -5/+5 |
2020-03-21 | avoid out-of-bounds read for invalid quoted timezone | Samuel Holland | 1 | -2/+2 |
2020-02-12 | fix remaining direct use of stat syscalls outside fstatat.c | Rich Felker | 1 | -1/+2 |
2019-09-25 | fix data race in timer_create with SIGEV_THREAD notification | Rich Felker | 1 | -2/+2 |
2019-08-07 | in clock_getres, check for null pointer before storing result | Rich Felker | 1 | -1/+1 |
2019-08-07 | remove spurious null check in clock_settime | Rich Felker | 1 | -1/+1 |
2019-08-05 | fix regression in clock_gettime on 32-bit archs without vdso | Rich Felker | 1 | -0/+1 |
2019-08-02 | clock_gettime: add support for 32-bit vdso with 64-bit time_t | Rich Felker | 1 | -0/+32 |
2019-08-02 | clock_gettime: add time64 syscall support, decouple 32-bit time_t | Rich Felker | 1 | -0/+19 |
2019-07-29 | clock_getres: don't assume time_t is 32-bit on 32-bit archs | Rich Felker | 1 | -0/+14 |
2019-07-29 | timer_gettime: add time64 syscall support, decouple 32-bit time_t | Rich Felker | 1 | -0/+16 |
2019-07-29 | clock_settime: add time64 syscall support, decouple 32-bit time_t | Rich Felker | 1 | -0/+17 |
2019-07-29 | timer_settime: add support for time64 syscall, decouple 32-bit time_t | Rich Felker | 1 | -0/+25 |
2019-07-28 | clock_nanosleep: add time64 syscall support, decouple 32-bit time_t | Rich Felker | 1 | -0/+25 |
2019-07-27 | refactor thrd_sleep and nanosleep in terms of clock_nanosleep | Rich Felker | 2 | -4/+8 |
2019-02-15 | always block signals for starting new threads, refactor start args | Rich Felker | 1 | -1/+0 |
2019-02-15 | for SIGEV_THREAD timer threads, replace signal handler with sigwaitinfo | Rich Felker | 2 | -21/+16 |
2019-01-21 | fix call to __pthread_tsd_run_dtors with too many arguments | Rich Felker | 1 | -1/+1 |
2018-10-22 | don't omit setting errno in internal __map_file function | Rich Felker | 1 | -2/+2 |
2018-09-15 | always reset DST rules during tzset | Benjamin Peterson | 1 | -1/+2 |
2018-09-12 | split internal lock API out of libc.h, creating lock.h | Rich Felker | 1 | -0/+1 |
2018-09-12 | reduce spurious inclusion of libc.h | Rich Felker | 8 | -8/+1 |
2018-09-12 | move declaration and apply hidden visibility to __utc string | Rich Felker | 3 | -4/+1 |
2018-09-12 | remove or make static various unused __-prefixed symbols | Rich Felker | 1 | -1/+1 |
2018-09-12 | apply hidden visibility to internal time[zone] implementation functions | Rich Felker | 1 | -8/+8 |
2018-09-12 | overhaul internally-public declarations using wrapper headers | Rich Felker | 11 | -23/+1 |
2018-09-12 | move declarations of tls setup/access functions to pthread_impl.h | Rich Felker | 1 | -2/+0 |
2018-09-12 | move __strftime_fmt_1 declaration to time_impl.h | Rich Felker | 2 | -2/+2 |
2018-09-12 | move __tm_to_tzname declaration to time_impl.h with related functions | Rich Felker | 2 | -1/+1 |
2018-09-12 | fix type-mismatched declarations of __nl_langinfo_l in source files | Rich Felker | 2 | -2/+2 |
2018-09-12 | use idiomatic weak alias approach for defining asctime_r | Rich Felker | 3 | -33/+28 |
2018-09-12 | move and deduplicate declarations of __vdsosym to make it checkable | Rich Felker | 1 | -2/+0 |
2018-08-27 | time: fix incorrect DST offset when using POSIX timezones without DST | A. Wilcox | 1 | -1/+1 |
2018-08-07 | fix sign of strftime %z output with offsets <1 hour west of UTC | Rich Felker | 1 | -3/+2 |
2018-06-26 | strftime: fix underlying format string in %z format | Daniel Sabogal | 1 | -1/+1 |
2018-04-07 | implement wcsftime padding specifier extensions | Samuel Holland | 1 | -3/+5 |
2018-02-06 | adjust strftime + modifier to match apparent intent of POSIX | Rich Felker | 1 | -6/+12 |
2018-02-05 | fix strftime field widths with %F format and zero year | Rich Felker | 1 | -1/+2 |
2018-01-09 | revise the definition of multiple basic locks in the code | Jens Gustedt | 1 | -1/+1 |
2017-12-14 | use the name UTC instead of GMT for UTC timezone | Natanael Copa | 3 | -12/+12 |
2017-12-11 | implement strftime padding specifier extensions | Timo Teräs | 1 | -8/+14 |
2017-11-09 | fix mismatched type of __pthread_tsd_run_dtors weak definition | Rich Felker | 1 | -2/+2 |
2017-06-20 | handle errors from localtime_r in ctime_r | Rich Felker | 1 | -3/+2 |