1. 14 5月, 2012 1 次提交
  2. 21 3月, 2012 1 次提交
  3. 26 6月, 2011 1 次提交
  4. 08 6月, 2011 1 次提交
  5. 30 3月, 2011 1 次提交
    • R
      implement POSIX timers · 80c4dcd2
      Rich Felker 提交于
      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.
      80c4dcd2
  6. 11 3月, 2011 1 次提交
    • R
      fix sem_open and sem_close to obey posix semantics · 81af5036
      Rich Felker 提交于
      multiple opens of the same named semaphore must return the same
      pointer, and only the last close can unmap it. thus the ugly global
      state keeping track of mappings. the maximum number of distinct named
      semaphores that can be opened is limited sufficiently small that the
      linear searches take trivial time, especially compared to the syscall
      overhead of these functions.
      81af5036
  7. 04 3月, 2011 1 次提交
  8. 15 2月, 2011 1 次提交
  9. 14 2月, 2011 2 次提交
  10. 12 2月, 2011 1 次提交