about summary refs log tree commit diff
path: root/nptl
Commit message (Collapse)AuthorAgeFilesLines
...
* SH lowlevellock broken for FUTEX_CLOCK_REALTIME.Andrew Stubbs2009-08-282-9/+14
|
* Handle AVX saving on x86-64 in interrupted smbol lookups.Ulrich Drepper2009-08-252-2/+15
| | | | | | | | | If a signal arrived during a symbol lookup and the signal handler also required a symbol lookup, the end of the lookup in the signal handler reset the flag whether restoring AVX/SSE registers is needed. Resetting means in this case that the tail part of the outer lookup code will try to restore the registers and this can fail miserably. We now restore to the previous value which makes nesting calls possible.
* Hint to kernel that thread stack memory can be removed.Ulrich Drepper2009-08-242-11/+30
|
* More namespace cleanups.Ulrich Drepper2009-08-232-4/+10
|
* Rvert accidental checkins.Ulrich Drepper2009-08-226-547/+11
|
* Add sigstack handling to Linux ____longjmp_chk on powerpc.Andreas Schwab2009-08-226-11/+547
|
* Add CFI directives to x86-64 pthread_rwlock_unlock.Ulrich Drepper2009-08-112-2/+8
|
* Add CFI directives to x86-64 pthread_rwlock_{rd,wr)lock.Ulrich Drepper2009-08-103-2/+12
|
* Fix check for PI mutex in x86-64 pthread_cond_signalAndreas Schwab2009-08-102-3/+9
| | | | Register eax contains the syscall number, use a different one instead.
* Optimize x86-64 version of sem_timedwait.Ulrich Drepper2009-08-082-65/+148
|
* Another minor optimization of x86-64 pthread_cond_wait.Ulrich Drepper2009-08-082-15/+13
|
* Small optimizations to cancellable x86-64 code.Ulrich Drepper2009-08-075-61/+49
|
* Optimize x86-64 syscall cancellation handling.Ulrich Drepper2009-08-046-44/+191
| | | | | | | The syscall wrappers had to save and restore the syscall parameter values and return value when calling the functions to enable/disable cancellation were called. Not anymore. The called functions are special and don't modify any unexpected registers.
* Macro cleanup.Ulrich Drepper2009-07-312-8/+12
| | | | Better definition of the *_NITSET macros.
* Regenerated.Ulrich Drepper2009-07-311-8/+40
|
* Fix x86-64 TCB alignment for future processor versions.Ulrich Drepper2009-07-292-4/+13
|
* Preserve SSE registers in runtime relocations on x86-64.Ulrich Drepper2009-07-293-18/+64
| | | | | | | | | | SSE registers are used for passing parameters and must be preserved in runtime relocations. This is inside ld.so enforced through the tests in tst-xmmymm.sh. But the malloc routines used after startup come from libc.so and can be arbitrarily complex. It's overkill to save the SSE registers all the time because of that. These calls are rare. Instead we save them on demand. The new infrastructure put in place in this patch makes this possible and efficient.
* Fix bookkeeping in mutex when using requeue_pi.Ulrich Drepper2009-07-289-24/+83
|
* pthread_mutex_unlock needs to use _rel semantics for atomic ops.Ulrich Drepper2009-07-272-3/+9
|
* Revert "Memory ordering in pthread_mutex_{,timed}lock."Ulrich Drepper2009-07-273-19/+12
| | | | This reverts commit 7b7f43bed134db6a0da34282fffcbf0af10d4613.
* Memory ordering in pthread_mutex_{,timed}lock.Ulrich Drepper2009-07-263-12/+19
| | | | | All commits should have happened before the mutex lock is taken. Therefore use the _rel variant of the cmpxchg atomic op.
* Check for .cfi_{personality,lsda} on x86-64.Ulrich Drepper2009-07-233-0/+61
| | | | We need this support in NPTL now to avoid the hand-coded tables.
* Fix pthread_cond_timedwait error handling on old kernels.Ulrich Drepper2009-07-232-2/+7
|
* Minor optimizations of last x86-64 condvar changes.Ulrich Drepper2009-07-203-23/+22
|
* Support requeueing for condvars using PI mutex. x86-64 only.Ulrich Drepper2009-07-196-36/+177
| | | | | Add support for the new FUTEX_WAIT_REQUEUE_PI and FUTEX_CMP_REQUEUE_PI options of futex.
* Make x86-64 pthread_cond_timedwait more robust.Ulrich Drepper2009-07-192-0/+7
| | | | | | It just happens that __pthread_enable_asynccancel doesn't modify the $rdi register. But this isn't guaranteed. Hence we reload the register after the calls.
* Extend x86-64 __lll_robust_timedlock_wait to use futex syscall with absolute ↵Ulrich Drepper2009-07-192-2/+80
| | | | timeout.
* Add more sem_timedwait tests.Ulrich Drepper2009-07-183-1/+20
|
* Extend x86-64 pthread_rwlock_timedrdlock to use futex syscall with absolute ↵Ulrich Drepper2009-07-182-18/+57
| | | | timeout.
* Pretty printing last change.Ulrich Drepper2009-07-181-6/+6
|
* Extend x86-64 pthread_rwlock_timedwrlock to use futex syscall with absolute ↵Ulrich Drepper2009-07-182-12/+53
| | | | timeout.
* Remove leftover cfi.Ulrich Drepper2009-07-181-4/+1
|
* Extend pthread_cond_timedwait tests.Ulrich Drepper2009-07-182-1/+18
|
* Extend x86-64 pthread_cond_timedwait to use futex syscall with absolute timeout.Ulrich Drepper2009-07-182-126/+296
|
* Optimize x86-64 pthread_cond_timedwait.Ulrich Drepper2009-07-182-144/+190
| | | | | Instead of actively registering an unwind buffer we now use the exception handling functionality of the gcc runtime.
* Optimize x86-64 pthread_cond_wait.Ulrich Drepper2009-07-183-144/+315
| | | | | Instead of actively registering an unwind buffer we now use the exception handling functionality of the gcc runtime.
* Extend x86-64 sem_timedwait to use futex syscall with absolute timeout.Ulrich Drepper2009-07-172-46/+120
|
* Consistently use symbolic constants.Ulrich Drepper2009-07-171-4/+3
|
* Replace hand-coded unwind tables from x86-64 sem_timedwait.Ulrich Drepper2009-07-172-122/+31
|
* Optimize x86-64 sem_wait for uncontested semaphore.Ulrich Drepper2009-07-172-24/+30
|
* Replace hand-coded unwind tables from x86-64 sem_wait.Ulrich Drepper2009-07-172-101/+26
|
* Replace hand-coded unwind tables from x86-64 pthread_once.Ulrich Drepper2009-07-172-106/+24
|
* Replace hand-coded unwind tables from x86-64 pthread_cond_wait.Ulrich Drepper2009-07-172-76/+24
|
* Implement pthread_sigqueue.Ulrich Drepper2009-06-125-2/+102
| | | | | | The kernel from 2.3.31 on supports the rt_tgsigqueueinfo syscall. Use it to implement the non-standard extension which, like sigqueue, can pass additional data to the receiving thread.
* Fix futex syscall parameter for x86 absolute timeout waits.Bryan Kadzban2009-06-112-1/+9
| | | | This affects only installations compiled for kernels older than 2.6.18.
* libc-cancellation.c cleanup.Ulrich Drepper2009-05-164-11/+35
| | | | | The unrelated function __libc_cleanup_routine should not be in this file. Move it into its own file.
* Unify source for async cancel handling.Ulrich Drepper2009-05-164-189/+12
| | | | | Unify all three places where we enable async cancellation for syscalls. Optimize a bit.
* Rename nptl/init.c to nptl/nptl-init.c.Ulrich Drepper2009-05-163-3/+9
| | | | | Needed to allow overwriting architectures init.c in csu and nptl individually. Fixes BZ #9924.
* ChangeLog entries incorrectly applied.Ulrich Drepper2009-05-151-25/+0
|
* Add missing export of fallocate64 on 32-bit platforms.Jakub Jelinek2009-05-151-0/+18
| | | | | | Due to a pasto the fallocate64 interface, introduced in glibc 2.10, isn't exported for 32-bit Linux platforms. It is too late for this now so exported them for glibc 2.11.