aboutsummaryrefslogtreecommitdiff
path: root/src/time/timer_create.c
AgeCommit message (Expand)AuthorFilesLines
2023-11-06timer_create: volatile static -> static volatileAlex Xu (Hello71)1-1/+1
2022-09-19fix thread leak on timer_create(SIGEV_THREAD) failureAlexey Izbyshev1-1/+5
2020-10-28add support for SIGEV_THREAD_ID timersJames Y Knight1-2/+6
2020-10-14drop use of pthread_once in timer_createRich Felker1-10/+7
2020-10-14remove unused SIGTIMER handler in timer_createRich Felker1-6/+1
2019-09-25fix data race in timer_create with SIGEV_THREAD notificationRich Felker1-2/+2
2019-02-15always block signals for starting new threads, refactor start argsRich Felker1-1/+0
2019-02-15for SIGEV_THREAD timer threads, replace signal handler with sigwaitinfoRich Felker1-20/+15
2019-01-21fix call to __pthread_tsd_run_dtors with too many argumentsRich Felker1-1/+1
2018-09-12move declarations of tls setup/access functions to pthread_impl.hRich Felker1-2/+0
2017-11-09fix mismatched type of __pthread_tsd_run_dtors weak definitionRich Felker1-2/+2
2013-08-03have new timer threads unblock their own SIGTIMERRich Felker1-2/+2
2013-08-03add system for resetting TLS to initial valuesRich Felker1-0/+3
2013-08-03fix multiple bugs in SIGEV_THREAD timersRich Felker1-14/+15
2013-04-06silence nonsensical warnings in timer_createRich Felker1-2/+2
2013-03-26remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker1-1/+1
2012-11-08clean up sloppy nested inclusion from pthread_impl.hRich Felker1-0/+1
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker1-1/+1
2012-08-09fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker1-1/+2
2011-08-12more efficient signal blocking for timer threadsRich Felker1-4/+4
2011-08-11normal exit from timer thread should run dtors, restore cancel stateRich Felker1-1/+1
2011-08-11block signals in timer threadsRich Felker1-0/+4
2011-05-07optimize compound-literal sigset_t's not to contain useless hurd bitsRich Felker1-1/+1
2011-05-07overhaul implementation-internal signal protectionsRich Felker1-2/+1
2011-04-14use a separate signal from SIGCANCEL for SIGEV_THREAD timersRich Felker1-7/+25
2011-04-09run pthread tsd destructors when a timer thread pretends to exitRich Felker1-0/+6
2011-04-09greatly improve SIGEV_THREAD timersRich Felker1-14/+14
2011-04-06fix signal-based timers with null sigevent argumentRich Felker1-19/+14
2011-04-03timer threads should sleep and stay asleep... a long timeRich Felker1-1/+1
2011-04-03revert to deleting kernel-level timer from cancellation handlerRich Felker1-0/+8
2011-04-03simplify calling of timer signal handlerRich Felker1-3/+1
2011-03-30avoid all malloc/free in timer creation/destructionRich Felker1-20/+4
2011-03-30optimize timer creation and possibly protect against some minor racesRich Felker1-14/+19
2011-03-29reorder timer initialization so that timer_create does not depend on freeRich Felker1-8/+16
2011-03-29implement POSIX timersRich Felker1-0/+110