1. 04 4月, 2011 1 次提交
  2. 03 4月, 2011 5 次提交
  3. 02 4月, 2011 11 次提交
  4. 01 4月, 2011 2 次提交
  5. 31 3月, 2011 3 次提交
  6. 30 3月, 2011 9 次提交
    • R
      avoid crash on stupid but allowable usage of pthread_mutex_unlock · a1eb8cb5
      Rich Felker 提交于
      unlocking an unlocked mutex is not UB for robust or error-checking
      mutexes, so we must avoid calling __pthread_self (which might crash
      due to lack of thread-register initialization) until after checking
      that the mutex is locked.
      a1eb8cb5
    • R
      rename __simple_malloc.c to lite_malloc.c - yes this affects behavior! · 620a1346
      Rich Felker 提交于
      why does this affect behavior? well, the linker seems to traverse
      archive files starting from its current position when resolving
      symbols. since calloc.c comes alphabetically (and thus in sequence in
      the archive file) between __simple_malloc.c and malloc.c, attempts to
      resolve the "malloc" symbol for use by calloc.c were pulling in the
      full malloc.c implementation rather than the __simple_malloc.c
      implementation.
      
      as of now, lite_malloc.c and malloc.c are adjacent in the archive and
      in the correct order, so malloc.c should never be used to resolve
      "malloc" unless it's already needed to resolve another symbol ("free"
      or "realloc").
      620a1346
    • R
      streamline mutex unlock to remove a useless branch, use a_store to unlock · 02084109
      Rich Felker 提交于
      this roughly halves the cost of pthread_mutex_unlock, at least for
      non-robust, normal-type mutexes.
      
      the a_store change is in preparation for future support of archs which
      require a memory barrier or special atomic store operation, and also
      should prevent the possibility of the compiler misordering writes.
      02084109
    • R
      cheap special-case optimization for normal mutexes · 124b4ebc
      Rich Felker 提交于
      cycle-level benchmark on atom cpu showed typical pthread_mutex_lock
      call dropping from ~120 cycles to ~90 cycles with this change. benefit
      may vary with compiler options and version, but this optimization is
      very cheap to make and should always help some.
      124b4ebc
    • R
      reorder timer initialization so that timer_create does not depend on free · 68063001
      Rich Felker 提交于
      this allows small programs which only create times, but never delete
      them, to use simple_malloc instead of the full malloc.
      68063001
    • R
      missing prototype for wcscoll (stub) · 1c1aa32e
      Rich Felker 提交于
      1c1aa32e
    • R
      8524d653
    • 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
    • R
      major improvements to cancellation handling · bf619d82
      Rich Felker 提交于
      - there is no longer any risk of spoofing cancellation requests, since
        the cancel flag is set in pthread_cancel rather than in the signal
        handler.
      
      - cancellation signal is no longer unblocked when running the
        cancellation handlers. instead, pthread_create will cause any new
        threads created from a cancellation handler to unblock their own
        cancellation signal.
      
      - various tweaks in preparation for POSIX timer support.
      bf619d82
  7. 29 3月, 2011 9 次提交