From: Rich Felker Date: Tue, 29 Mar 2011 17:01:25 +0000 (-0400) Subject: implement POSIX timers X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=80c4dcd2535a2d7f01eb539b0358dc51b0c0e122;hp=80c4dcd2535a2d7f01eb539b0358dc51b0c0e122;p=musl implement POSIX timers this implementation is superior to the glibc/nptl implementation, in that it gives true realtime behavior. there is no risk of timer expiration events being lost due to failed thread creation or failed malloc, because the thread is created as time creation time, and reused until the timer is deleted. ---