Age | Commit message (Expand) | Author | Files | Lines |
2015-02-27 | fix failure of internal futex __timedwait to report ECANCELED | Rich Felker | 1 | -1/+1 |
2015-02-23 | fix breakage in pthread_cond_wait due to typo | Rich Felker | 1 | -1/+1 |
2015-02-22 | simplify cond var code now that cleanup handler is not needed | Rich Felker | 1 | -86/+63 |
2015-02-22 | fix pthread_cond_wait cancellation race | Rich Felker | 1 | -5/+38 |
2015-02-21 | add new masked cancellation mode | Rich Felker | 2 | -10/+16 |
2015-02-20 | prepare cancellation syscall asm for possibility of __cancel returning | Rich Felker | 5 | -11/+32 |
2015-02-16 | make pthread_exit responsible for disabling cancellation | Rich Felker | 2 | -3/+2 |
2015-02-09 | use the internal macro name FUTEX_PRIVATE in __wait | Szabolcs Nagy | 1 | -1/+1 |
2015-02-03 | fix missing memory barrier in cancellation signal handler | Rich Felker | 1 | -0/+1 |
2015-01-15 | overhaul __synccall and fix AS-safety and other issues in set*id | Rich Felker | 2 | -45/+138 |
2015-01-15 | suppress EINTR in sem_wait and sem_timedwait | Rich Felker | 1 | -1/+1 |
2014-11-22 | fix __aeabi_read_tp oversight in arm atomics/tls overhaul | Rich Felker | 1 | -4/+0 |
2014-11-19 | overhaul ARM atomics/tls for performance and compatibility | Rich Felker | 1 | -12/+1 |
2014-10-20 | manually "shrink wrap" fast path in pthread_once | Rich Felker | 1 | -8/+12 |
2014-10-13 | eliminate global waiters count in pthread_once | Rich Felker | 1 | -9/+13 |
2014-10-10 | fix missing barrier in pthread_once/call_once shortcut path | Rich Felker | 1 | -2/+6 |
2014-09-07 | add C11 thread creation and related thread functions | Rich Felker | 9 | -7/+82 |
2014-09-06 | add C11 condition variable functions | Jens Gustedt | 6 | -0/+57 |
2014-09-06 | add C11 mutex functions | Jens Gustedt | 6 | -0/+69 |
2014-09-06 | add C11 thread functions operating on tss_t and once_flag | Jens Gustedt | 5 | -0/+42 |
2014-09-06 | use weak symbols for the POSIX functions that will be used by C threads | Jens Gustedt | 14 | -28/+73 |
2014-09-05 | make non-waiting paths of sem_[timed]wait and pthread_join cancelable | Rich Felker | 2 | -0/+3 |
2014-08-25 | refrain from spinning on locks when there is already a waiter | Rich Felker | 5 | -5/+5 |
2014-08-25 | spin before waiting on futex in mutex and rwlock lock operations | Rich Felker | 3 | -0/+20 |
2014-08-25 | spin in sem_[timed]wait before performing futex wait | Rich Felker | 1 | -0/+5 |
2014-08-25 | sanitize number of spins in userspace before futex wait | Rich Felker | 2 | -2/+2 |
2014-08-23 | fix false ownership of stdio FILEs due to tid reuse | Rich Felker | 1 | -0/+2 |
2014-08-22 | fix fallback checks for kernels without private futex support | Rich Felker | 4 | -4/+4 |
2014-08-22 | fix use of uninitialized memory with application-provided thread stacks | Rich Felker | 1 | -0/+2 |
2014-08-18 | further simplify and optimize new cond var | Rich Felker | 1 | -29/+21 |
2014-08-18 | simplify and improve new cond var implementation | Rich Felker | 1 | -40/+22 |
2014-08-17 | redesign cond var implementation to fix multiple issues | Rich Felker | 5 | -88/+209 |
2014-08-17 | fix possible failure-to-wake deadlock with robust mutexes | Rich Felker | 1 | -1/+4 |
2014-08-17 | make pointers used in robust list volatile | Rich Felker | 3 | -9/+16 |
2014-08-16 | fix robust mutex unrecoverable status, and related clean-up | Rich Felker | 3 | -12/+4 |
2014-08-16 | fix false ownership of mutexes due to tid reuse, using robust list | Rich Felker | 4 | -23/+26 |
2014-08-16 | enable private futex for process-local robust mutexes | Rich Felker | 3 | -1/+25 |
2014-08-15 | make futex operations use private-futex mode when possible | Rich Felker | 22 | -64/+74 |
2014-07-18 | add or1k (OpenRISC 1000) architecture port | Stefan Kristiansson | 4 | -0/+64 |
2014-07-16 | work around constant folding bug 61144 in gcc 4.9.0 and 4.9.1 | Rich Felker | 2 | -4/+4 |
2014-07-06 | rename file containing pthread_cleanup_push and pop for consistency | Rich Felker | 1 | -0/+0 |
2014-07-06 | rework cancellation weak alias logic not to depend on archive order | Rich Felker | 3 | -6/+12 |
2014-07-05 | eliminate use of cached pid from thread structure | Rich Felker | 4 | -8/+5 |
2014-07-02 | add locale framework | Rich Felker | 1 | -0/+7 |
2014-06-19 | separate __tls_get_addr implementation from dynamic linker/init_tls | Rich Felker | 1 | -0/+17 |
2014-06-19 | optimize i386 ___tls_get_addr asm | Rich Felker | 1 | -1/+8 |
2014-06-10 | simplify errno implementation | Rich Felker | 1 | -1/+0 |
2014-06-10 | replace all remaining internal uses of pthread_self with __pthread_self | Rich Felker | 9 | -10/+10 |
2014-06-10 | add thread-pointer support for pre-2.6 kernels on i386 | Rich Felker | 1 | -4/+18 |
2014-04-15 | fix deadlock race in pthread_once | Rich Felker | 1 | -2/+1 |