summaryrefslogtreecommitdiff
path: root/nptl
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearsH.J. Lu2012-10-022-1/+5
|
* Fix clone flag name in comment to CLONE_CHILD_CLEARTID.Siddhesh Poyarekar2012-10-028-7/+18
|
* Fix exception table for i386 pthread_cond_waitSiddhesh Poyarekar2012-10-015-3/+147
| | | | | | | | [BZ #14477] Add an additional entry in the exception table to jump to __condvar_w_cleanup2 instead of __condvar_w_cleanup for PI mutexes when %ebx contains the address of the futex instead of the condition variable.
* Fix bugs in powerpc pthread_once.Alan Modra2012-09-251-5/+16
| | | | | | | | | Ref gcc.gnu.org/bugzilla/show_bug.cgi?id=52839#c10 Release barriers are needed to ensure that any memory written by init_routine is seen by other threads before *once_control changes. In the case of clear_once_control we need to flush any partially written state.
* Set "fail on error" mode directly in testsuite shell scriptsDmitry V. Levin2012-09-253-3/+9
|
* Add copyright notices to testsuite shell scriptsDmitry V. Levin2012-09-252-1/+22
|
* Add "()" when casting to uint64_t for 64-bit storeH.J. Lu2012-09-242-2/+8
|
* Cast to uint64_t for 64-bit storeH.J. Lu2012-09-192-2/+8
|
* [BZ #14583]Jeff Law2012-09-142-1/+6
| | | | * sysdeps/pthread/pthread.h: Fix prototype of __sigsetjmp.
* Remove unused __rtld_lock_init_recursive macroH.J. Lu2012-09-132-12/+6
|
* Fix a typo in ChangeLogH.J. Lu2012-09-101-1/+1
|
* Rename LDFLAGS-XXX to LDLIBS-XXX for -lstdc++H.J. Lu2012-09-072-1/+6
|
* Add tst-cancel21-static.cH.J. Lu2012-09-063-2/+11
|
* Remove __ASSUME_POSIX_CPU_TIMERS.Joseph Myers2012-09-012-51/+10
|
* Fix sem_post race (bug 14532).Joseph Myers2012-08-314-5/+100
|
* Make libio compile without _IO_MTSAFE_IO.Roland McGrath2012-08-172-2/+7
|
* Clean up definition of _LIBC_REENTRANT and _IO_MTSAFE_IO.Roland McGrath2012-08-172-3/+9
|
* Remove __ASSUME_POSIX_TIMERS.Joseph Myers2012-08-1613-568/+249
|
* Optimize __libc_lock_lock and __libc_lock_trylock for MIPS.Maxim Kuvyrkov2012-08-152-2/+14
|
* Add generic versions of pthread_spin_lock and pthread_spin_trylock.Maxim Kuvyrkov2012-08-153-0/+101
|
* Remove __ASSUME_TGKILL.Joseph Myers2012-08-087-67/+28
|
* Remove some pre-2.6.16 Linux kernel conditionals.Joseph Myers2012-08-072-8/+6
|
* Remove some pre-2.6.0 Linux kernel conditionals.Joseph Myers2012-08-032-12/+6
|
* Fix tst-pthread-getattr test caseSiddhesh Poyarekar2012-07-282-22/+74
| | | | | | Get the tst-pthread-getattr fix back with further improvements so that it does not fail on targets that use the user stack to save context.
* Remove unused pseudo_end labelAndreas Schwab2012-07-254-8/+13
|
* Revert fix to tst-pthread-getattr since it fails on sparcSiddhesh Poyarekar2012-07-252-40/+16
|
* Fix tst-pthread-getattr test caseSiddhesh Poyarekar2012-07-202-12/+50
| | | | | | | | | | | | | | In some cases, the compiler would optimize out the call to allocate_and_test and thus result in a false positive for the test case. Another problem was the fact that the compiler could in some cases generate additional shifting of the stack pointer, resulting in alloca moving the stack pointer beyond what is allowed by the rlimit. Hence, accessing the stackaddr returned by pthread_getattr_np is safer than relying on the alloca'd result. Another problem is when RLIMIT may be very large, which may result in violation of other resource limits. Hence we cap the max stack size to 8M for this test.
* Fix comment that describes sighandler_setxidSiddhesh Poyarekar2012-07-192-1/+8
|
* SH: __lll_robust_timedlock_wait: Simplify CFI directives.Thomas Schwinge2012-06-232-6/+9
|
* Account for the extra stack size when rlimit is small enoughSiddhesh Poyarekar2012-06-204-2/+139
| | | | | | | | | | | When rlimit is small enough to be used as the stacksize to be returned in pthread_getattr_np, cases where a stack is made executable due to a DSO load get stack size that is larger than what the kernel allows. This is because in such a case the stack size does not account for the pages that have auxv and program arguments. Additionally, the stacksize for the process derived from this should be truncated to align to page size to avoid going beyond rlimit.
* Fix build on non-v9 sparc32.Carlos Sánchez de La Lama2012-06-072-1/+7
| | | | | | | | nptl/ [BZ #14205] * sysdeps/sparc/sparc32/pthread_spin_lock.S: Do not use v9 branches.
* Wrap __builtin_expect in pthread.hSiddhesh Poyarekar2012-06-042-2/+11
| | | | | | [BZ #14188] This fixes compilation of programs using pthread_cleanup_push built with non-gcc compilers and older gcc compilers.
* Use x86-64 bits/pthreadtypes.h/semaphore.h for i386/x86-64H.J. Lu2012-05-307-211/+16
|
* Move CL entryAndreas Schwab2012-05-301-0/+43
|
* Remove use of INTDEF/INTUSE in nptlAndreas Schwab2012-05-3030-122/+83
|
* SH: Add CFI directives.Chung-Lin Tang2012-05-282-5/+9
|
* SH: Add CFI directives.Chung-Lin Tang2012-05-2817-27/+383
|
* Fix stack size and address inconsistency due to executable stackSiddhesh Poyarekar2012-05-262-2/+21
| | | | | | | | | | | | | | | When a stack is marked executable due to loading a DSO that requires an executable stack, the logic tends to leave out a portion of stack after the first frame, thus causing a difference in the value returned by pthread_getattr_np before and after the stack is marked executable. It ought to be possible to fix this by marking the rest of the stack as executable too, but in the interest of marking as less of the stack as executable as possible, the path this fix takes is to make pthread_getattr_np also look at the first frame as the underflow end of the stack and compute size and stack top accordingly. The above happens only for the main process stack. NPTL thread stacks are not affected by this change.
* i386 port of the pthread SystemTap probesRayson Ho2012-05-259-12/+46
|
* Add systemtap static probe points in generic and x86_64 pthread code.Roland McGrath2012-05-2526-53/+266
|
* Add --enable-systemtap configuration to define static probe points.Roland McGrath2012-05-252-0/+8
|
* Fix warnings on Linux/i686Andreas Jaeger2012-05-172-4/+8
| | | | | | Fixes: ../sysdeps/i386/dl-machine.h:336:30: warning: unused variable ‘refsym’ [-Wunused-variable] rtld.c:1435:3: warning: implicit declaration of function ‘_dl_discover_osversion’ [-Wimplicit-function-declaration]
* Remove fallback definitions of __NR_set_robust_list.Joseph Myers2012-05-152-12/+6
|
* Split up stackguard-macros.h into sysdeps directories.Joseph Myers2012-05-151-2/+2
|
* Use R*_LP to load pointer and operate on stackH.J. Lu2012-05-152-31/+44
|
* Use LP_OP(cmp) and RCX_LP on dep_mutex pointerH.J. Lu2012-05-152-4/+9
|
* Use LP_OP(op), LP_SIZE and ASM_ADDR in sem_wait.SH.J. Lu2012-05-152-6/+13
|
* se LP_OP(op), LP_SIZE and ASM_ADDR in sem_timedwait.SH.J. Lu2012-05-152-9/+16
|
* Use LP_OP(cmp) on NWAITERSH.J. Lu2012-05-152-1/+6
|
* Use LP_SIZE and ASM_ADDR in pthread_once.SH.J. Lu2012-05-152-3/+9
|