about summary refs log tree commit diff
path: root/src/time
Commit message (Expand)AuthorAgeFilesLines
* use default timezone from /etc/localtime if $TZ is unset/blankRich Felker2014-06-061-2/+3
* implement %y and %C specifiers in strptimeTimo Teräs2014-06-061-4/+10
* support linux kernel apis (new archs) with old syscalls removedRich Felker2014-05-291-9/+6
* support kernels with no SYS_open syscall, only SYS_openatRich Felker2014-05-241-2/+1
* fix unhandled cases in strptimeRich Felker2014-05-191-5/+16
* fix strftime %s not to zero pad with default width=2Szabolcs Nagy2014-05-081-0/+1
* perform minimal sanity checks on zoneinfo files loaded via TZ variableRich Felker2014-04-221-0/+5
* do not try to interpret implementation specific strings as tz definitionTimo Teräs2014-04-221-0/+1
* allow zoneinfo-path-relative filenames with no slashes in TZ variableRich Felker2014-04-211-12/+8
* add working vdso clock_gettime support, including static linkingRich Felker2014-04-161-5/+13
* fix fallback code for old kernels in clock_gettimeRich Felker2014-04-141-1/+1
* eliminate explicit (long) casts when making syscallsRich Felker2014-01-064-4/+4
* fix hangs in localtime for near-overflowing time_t values on 64-bit archsRich Felker2013-12-191-0/+6
* include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy2013-12-125-6/+0
* fix off-by-one length failure in strftime/wcsftime and improve error behaviorRich Felker2013-11-262-12/+16
* remove O_NOFOLLOW from __map_file used for time zone file loadingRich Felker2013-11-081-1/+1
* fix handling of overly-long TZ environment variable valuesRich Felker2013-11-081-1/+1
* timezone parser: fix iteration over search dir pathsrofl0r2013-11-041-1/+1
* timezone parser: fix offset to transition table in 64bit code pathrofl0r2013-11-041-1/+1
* fix timezone parser code crashing on 64bit sysrofl0r2013-11-041-1/+1
* add legacy ftime function and sys/timeb.hRich Felker2013-10-251-0/+12
* add the %s (seconds since the epoch) format to strftimeRich Felker2013-08-251-0/+4
* fix strftime regression in %e formatRich Felker2013-08-241-2/+2
* properly fill in tzname[] for old (pre-64-bit-format) zoneinfo filesRich Felker2013-08-241-1/+22
* minor fix to tz name checkingRich Felker2013-08-241-2/+2
* fix strftime handling of time zone dataRich Felker2013-08-244-8/+36
* fix mishandling of empty or blank TZ environment variableRich Felker2013-08-231-1/+1
* fix missing string.h in strftime.c (needed by new strftime code)Rich Felker2013-08-231-0/+1
* add strftime and wcsftime field widthsRich Felker2013-08-222-24/+81
* simplify strftime and fix integer overflowsRich Felker2013-08-221-28/+12
* strftime cleanup: avoid recomputing strlen when it's knownRich Felker2013-08-221-10/+16
* more strftime refactoringRich Felker2013-08-221-23/+25
* begin refactoring strftime to make adding field widths easierRich Felker2013-08-221-151/+161
* have new timer threads unblock their own SIGTIMERRich Felker2013-08-031-2/+2
* add system for resetting TLS to initial valuesRich Felker2013-08-031-0/+3
* fix multiple bugs in SIGEV_THREAD timersRich Felker2013-08-035-21/+35
* add wcsftime_t aliasRich Felker2013-08-021-0/+3
* fix semantically incorrect use of LC_GLOBAL_LOCALERich Felker2013-07-282-2/+2
* reorder strftime to eliminate the incorrect indention levelRich Felker2013-07-271-5/+5
* rework langinfo code for ABI compat and for use by time codeRich Felker2013-07-242-8/+9
* add __wcsftime_l symbolRich Felker2013-07-241-3/+9
* move strftime_l into strftime.c and add __-prefixed versionRich Felker2013-07-241-1/+10
* fix error code on time conversion overflowsRich Felker2013-07-174-4/+4
* fix fd leak in file mapping code used in new zoneinfo supportRich Felker2013-07-171-1/+1
* the big time handling overhaulRich Felker2013-07-1718-348/+649
* implement week-based-year year numbers in strftimeRich Felker2013-06-281-27/+34
* fix breakage in last commit to strftime due to missing INT_MAXRich Felker2013-06-281-0/+1
* implement week numbers and half of the week-based-year logic for strftimeRich Felker2013-06-281-3/+38
* support cputime clocks for processes/threads other than selfRich Felker2013-06-081-2/+5
* fix overflow behavior of clock() functionRich Felker2013-05-231-7/+10