about summary refs log tree commit diff
path: root/src/time
Commit message (Expand)AuthorAgeFilesLines
* parse v3 or future-unknown zoneinfo file versions as v2+Rich Felker2020-11-221-1/+1
* explicitly prefer 64-bit/v2 zoneinfo tablesRich Felker2020-11-221-1/+1
* lift child restrictions after multi-threaded forkRich Felker2020-11-111-0/+2
* convert malloc use under libc-internal locks to use internal allocatorRich Felker2020-11-111-0/+5
* add support for SIGEV_THREAD_ID timersJames Y Knight2020-10-281-2/+6
* drop use of pthread_once in timer_createRich Felker2020-10-141-10/+7
* remove unused SIGTIMER handler in timer_createRich Felker2020-10-141-6/+1
* fix parsing offsets after long timezone namesSamuel Holland2020-03-211-5/+5
* avoid out-of-bounds read for invalid quoted timezoneSamuel Holland2020-03-211-2/+2
* fix remaining direct use of stat syscalls outside fstatat.cRich Felker2020-02-121-1/+2
* fix data race in timer_create with SIGEV_THREAD notificationRich Felker2019-09-251-2/+2
* in clock_getres, check for null pointer before storing resultRich Felker2019-08-071-1/+1
* remove spurious null check in clock_settimeRich Felker2019-08-071-1/+1
* fix regression in clock_gettime on 32-bit archs without vdsoRich Felker2019-08-051-0/+1
* clock_gettime: add support for 32-bit vdso with 64-bit time_tRich Felker2019-08-021-0/+32
* clock_gettime: add time64 syscall support, decouple 32-bit time_tRich Felker2019-08-021-0/+19
* clock_getres: don't assume time_t is 32-bit on 32-bit archsRich Felker2019-07-291-0/+14
* timer_gettime: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-291-0/+16
* clock_settime: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-291-0/+17
* timer_settime: add support for time64 syscall, decouple 32-bit time_tRich Felker2019-07-291-0/+25
* clock_nanosleep: add time64 syscall support, decouple 32-bit time_tRich Felker2019-07-281-0/+25
* refactor thrd_sleep and nanosleep in terms of clock_nanosleepRich Felker2019-07-272-4/+8
* always block signals for starting new threads, refactor start argsRich Felker2019-02-151-1/+0
* for SIGEV_THREAD timer threads, replace signal handler with sigwaitinfoRich Felker2019-02-152-21/+16
* fix call to __pthread_tsd_run_dtors with too many argumentsRich Felker2019-01-211-1/+1
* don't omit setting errno in internal __map_file functionRich Felker2018-10-221-2/+2
* always reset DST rules during tzsetBenjamin Peterson2018-09-151-1/+2
* split internal lock API out of libc.h, creating lock.hRich Felker2018-09-121-0/+1
* reduce spurious inclusion of libc.hRich Felker2018-09-128-8/+1
* move declaration and apply hidden visibility to __utc stringRich Felker2018-09-123-4/+1
* remove or make static various unused __-prefixed symbolsRich Felker2018-09-121-1/+1
* apply hidden visibility to internal time[zone] implementation functionsRich Felker2018-09-121-8/+8
* overhaul internally-public declarations using wrapper headersRich Felker2018-09-1211-23/+1
* move declarations of tls setup/access functions to pthread_impl.hRich Felker2018-09-121-2/+0
* move __strftime_fmt_1 declaration to time_impl.hRich Felker2018-09-122-2/+2
* move __tm_to_tzname declaration to time_impl.h with related functionsRich Felker2018-09-122-1/+1
* fix type-mismatched declarations of __nl_langinfo_l in source filesRich Felker2018-09-122-2/+2
* use idiomatic weak alias approach for defining asctime_rRich Felker2018-09-123-33/+28
* move and deduplicate declarations of __vdsosym to make it checkableRich Felker2018-09-121-2/+0
* time: fix incorrect DST offset when using POSIX timezones without DSTA. Wilcox2018-08-271-1/+1
* fix sign of strftime %z output with offsets <1 hour west of UTCRich Felker2018-08-071-3/+2
* strftime: fix underlying format string in %z formatDaniel Sabogal2018-06-261-1/+1
* implement wcsftime padding specifier extensionsSamuel Holland2018-04-071-3/+5
* adjust strftime + modifier to match apparent intent of POSIXRich Felker2018-02-061-6/+12
* fix strftime field widths with %F format and zero yearRich Felker2018-02-051-1/+2
* revise the definition of multiple basic locks in the codeJens Gustedt2018-01-091-1/+1
* use the name UTC instead of GMT for UTC timezoneNatanael Copa2017-12-143-12/+12
* implement strftime padding specifier extensionsTimo Teräs2017-12-111-8/+14
* fix mismatched type of __pthread_tsd_run_dtors weak definitionRich Felker2017-11-091-2/+2
* handle errors from localtime_r in ctime_rRich Felker2017-06-201-3/+2