| Commit message (Expand) | Author | Age | Files | Lines |
* | Use sysctl kern.sched.cpusetsize to retrieve size of kernel cpuset. | davidxu | 2010-11-02 | 1 | -8/+5 |
* | Return previous sigaction correctly. | davidxu | 2010-10-29 | 1 | -1/+4 |
* | Remove local variable 'first', instead check signal number in memory, | davidxu | 2010-10-29 | 1 | -4/+1 |
* | Check small set and reject it, this is how kernel did. Always use the | davidxu | 2010-10-27 | 1 | -37/+32 |
* | - Revert r214409. | davidxu | 2010-10-27 | 1 | -5/+6 |
* | Remove locking and unlock in pthread_mutex_destroy, because | davidxu | 2010-10-27 | 1 | -25/+2 |
* | Fix typo. | davidxu | 2010-10-25 | 1 | -1/+1 |
* | Get cpuset in pthread_attr_get_np() and free it in pthread_attr_destroy(). | davidxu | 2010-10-25 | 2 | -10/+31 |
* | Revert revision 214007, I realized that MySQL wants to resolve | davidxu | 2010-10-20 | 4 | -52/+2 |
* | Set default type to PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP, this | davidxu | 2010-10-18 | 1 | -0/+1 |
* | sort function name. | davidxu | 2010-10-18 | 1 | -2/+2 |
* | s/||/&& | davidxu | 2010-10-18 | 1 | -2/+2 |
* | Add pthread_rwlockattr_setkind_np and pthread_rwlockattr_getkind_np, the | davidxu | 2010-10-18 | 4 | -2/+50 |
* | Oops, don't remove -fexceptions flag. | davidxu | 2010-10-08 | 1 | -0/+1 |
* | unwind.h was imported, gcc directory is no longer needed. | davidxu | 2010-10-08 | 1 | -1/+0 |
* | change code to use unwind.h. | davidxu | 2010-09-30 | 2 | -5/+6 |
* | Check invalid mutex in _mutex_cv_unlock. | davidxu | 2010-09-29 | 1 | -0/+6 |
* | In current code, statically initialized and destroyed object have | davidxu | 2010-09-28 | 5 | -195/+160 |
* | Report death event to debugger before moving to gc list, otherwise | davidxu | 2010-09-26 | 1 | -3/+2 |
* | Only access unwind_disabled when _PTHREAD_FORCED_UNWIND is defined. | davidxu | 2010-09-25 | 1 | -1/+2 |
* | Add missing field. | davidxu | 2010-09-25 | 1 | -0/+1 |
* | Because old _pthread_cleanup_push/pop do not have frame address, | davidxu | 2010-09-25 | 2 | -13/+17 |
* | Simplify code, and in while loop, fix operator to match the unwinding | davidxu | 2010-09-25 | 1 | -7/+4 |
* | To support stack unwinding for cancellation points, add -fexceptions flag | davidxu | 2010-09-25 | 5 | -5/+20 |
* | inline testcancel() into thr_cancel_leave(), because cancel_pending is | davidxu | 2010-09-24 | 1 | -2/+3 |
* | In most cases, cancel_point and cancel_async needn't be checked again, | davidxu | 2010-09-24 | 3 | -5/+3 |
* | If we are at cancellation point, always work as deferred mode despite | davidxu | 2010-09-21 | 1 | -34/+32 |
* | Because atfork lock is held while forking, a thread cancellation triggered | davidxu | 2010-09-19 | 4 | -12/+13 |
* | Fix typo. | davidxu | 2010-09-19 | 1 | -1/+1 |
* | - _Unwind_Resume function is not used, remove it. | davidxu | 2010-09-19 | 1 | -14/+8 |
* | Fix a race condition when finding stack unwinding functions. | davidxu | 2010-09-19 | 1 | -7/+20 |
* | add code to support stack unwinding when thread exits. note that only | davidxu | 2010-09-15 | 6 | -1/+184 |
* | Move back IN_GCLIST flag into field tlflags, since thread list and gc list | davidxu | 2010-09-15 | 1 | -6/+6 |
* | Don't compare thread pointers again. | davidxu | 2010-09-13 | 1 | -3/+3 |
* | Fix copy&paste problem. | davidxu | 2010-09-13 | 1 | -2/+2 |
* | Update symbol. | davidxu | 2010-09-13 | 1 | -1/+1 |
* | PS_DEAD state needs not be checked because _thr_find_thread() has already | davidxu | 2010-09-13 | 1 | -4/+0 |
* | Convert thread list lock from mutex to rwlock. | davidxu | 2010-09-13 | 15 | -129/+153 |
* | Merge from tbemd, with a small amount of rework: | imp | 2010-09-13 | 9 | -16/+11 |
* | Because POSIX does not allow EINTR to be returned from sigwait(), | davidxu | 2010-09-10 | 1 | -6/+8 |
* | To avoid possible race condition, SIGCANCEL is always sent except the | davidxu | 2010-09-08 | 1 | -1/+1 |
* | Fix off-by-one error in function _thr_sigact_unload, also disable the | davidxu | 2010-09-06 | 1 | -3/+5 |
* | Remove incorrect comments, also make sure signal is | davidxu | 2010-09-01 | 1 | -5/+4 |
* | In function __pthread_cxa_finalize(), also make code for removing | davidxu | 2010-09-01 | 1 | -1/+8 |
* | pthread_atfork should acquire writer lock and protect the code | davidxu | 2010-09-01 | 1 | -1/+3 |
* | Change atfork lock from mutex to rwlock, also make mutexes used by malloc() | davidxu | 2010-09-01 | 6 | -28/+60 |
* | Add signal handler wrapper, the reason to add it becauses there are | davidxu | 2010-09-01 | 14 | -273/+591 |
* | Unregister thread specific data destructor when a corresponding dso | davidxu | 2010-08-27 | 3 | -0/+23 |
* | clear lock to zero state if it is destroyed. | davidxu | 2010-08-27 | 1 | -0/+3 |
* | eliminate unused code. | davidxu | 2010-08-26 | 2 | -17/+0 |