| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Decrease rdlock count only when thread unlocked a reader lock. | davidxu | 2010-08-26 | 1 | -1/+1 |
* | Unify 32-bit and 64-bit PowerPC libthr support. This reduces code | nwhitehorn | 2010-08-24 | 6 | -147/+16 |
* | Remove unused source. | kib | 2010-08-24 | 1 | -57/+0 |
* | The __hidden definition is provided by sys/cdefs.h. | kib | 2010-08-24 | 1 | -4/+0 |
* | Add wrapper for setcontext() and swapcontext(), the wrappers | davidxu | 2010-08-24 | 3 | -14/+55 |
* | On shared object unload, in __cxa_finalize, call and clear all installed | kib | 2010-08-23 | 3 | -0/+26 |
* | Reduce redundant code. | davidxu | 2010-08-20 | 1 | -76/+21 |
* | In current implementation, thread cancellation is done in signal handler, | davidxu | 2010-08-20 | 6 | -99/+284 |
* | According to specification, function fcntl() is a cancellation point only | davidxu | 2010-08-20 | 1 | -4/+11 |