about summary refs log tree commit diff
path: root/src/time
Commit message (Expand)AuthorAgeFilesLines
* fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker2012-08-091-1/+2
* add timegm function (inverse of gmtime), nonstandardRich Felker2012-06-131-0/+9
* linux deprecated SYS_utime on some archs, so use SYS_utimes insteadRich Felker2012-05-241-1/+8
* ditch the priority inheritance locks; use malloc's version of lockRich Felker2012-04-241-3/+3
* remove debug cruft that was left in getdateRich Felker2012-03-021-2/+0
* first try at implementing getdate functionRich Felker2012-03-021-0/+47
* fix bugs in strptime handling of string day/month names, literalsRich Felker2012-03-021-0/+2
* implement wcsftime functionRich Felker2012-02-281-0/+32
* cleanup various minor issues reported by nszRich Felker2011-09-261-1/+2
* fix assumptions that char is signedRich Felker2011-09-161-2/+2
* remove incorrectly-made-visible internal dst offset variableRich Felker2011-09-141-1/+0
* strptime: fix use of uninitialized dest field in converting integerRich Felker2011-09-051-1/+1
* partially working strptimeRich Felker2011-08-161-148/+149
* fix missing include in last commitRich Felker2011-08-131-0/+1
* fix clock() functionRich Felker2011-08-131-2/+7
* more efficient signal blocking for timer threadsRich Felker2011-08-121-4/+4
* normal exit from timer thread should run dtors, restore cancel stateRich Felker2011-08-111-1/+1
* block signals in timer threadsRich Felker2011-08-111-0/+4
* use weak aliase rather than weak reference for vdso clock_gettimeRich Felker2011-08-071-8/+12
* workaround for gcc's optimizer breaking dynamic symbol resolutionRich Felker2011-07-241-1/+2
* const correctness on function pointerRich Felker2011-07-241-1/+1
* some preliminaries for vdso clock supportRich Felker2011-07-233-7/+35
* remove old useless timezone.s file (unused)Rich Felker2011-06-131-27/+0
* use volatile pointers for intentional-crash code.Rich Felker2011-06-061-1/+1
* optimize compound-literal sigset_t's not to contain useless hurd bitsRich Felker2011-05-071-1/+1
* overhaul implementation-internal signal protectionsRich Felker2011-05-071-2/+1
* overhaul pthread cancellationRich Felker2011-04-172-11/+2
* use a separate signal from SIGCANCEL for SIGEV_THREAD timersRich Felker2011-04-141-7/+25
* run pthread tsd destructors when a timer thread pretends to exitRich Felker2011-04-091-0/+6
* greatly improve SIGEV_THREAD timersRich Felker2011-04-092-15/+20
* consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefixRich Felker2011-04-063-3/+3
* fix signal-based timers with null sigevent argumentRich Felker2011-04-065-28/+19
* timer threads should sleep and stay asleep... a long timeRich Felker2011-04-031-1/+1
* revert to deleting kernel-level timer from cancellation handlerRich Felker2011-04-032-7/+11
* simplify calling of timer signal handlerRich Felker2011-04-031-3/+1
* avoid all malloc/free in timer creation/destructionRich Felker2011-03-305-29/+20
* optimize timer creation and possibly protect against some minor racesRich Felker2011-03-301-14/+19
* reorder timer initialization so that timer_create does not depend on freeRich Felker2011-03-292-9/+17
* implement POSIX timersRich Felker2011-03-295-0/+143
* overhaul cancellation to fix resource leaks and dangerous behavior with signalsRich Felker2011-03-241-0/+1
* global cleanup to use the new syscall interfaceRich Felker2011-03-206-11/+6
* if returning errno value directly from a syscall, we need to negate it.Rich Felker2011-03-191-1/+1
* syscall overhaul part two - unify public and internal syscall interfaceRich Felker2011-03-193-6/+3
* misplaced & in times() made it fail to work, and clobber the stackRich Felker2011-03-121-1/+1
* more cancellation points: tcdrain, clock_nanosleepRich Felker2011-03-101-1/+6
* fix errno behavior in clock_* functionsRich Felker2011-03-103-3/+0
* implement the remaining clock_* interfacesRich Felker2011-02-195-0/+36
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-1225-0/+874