glibc/nptl
Ulrich Drepper e51deae7f6 * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post):
Use __asm __volatile (__lll_acq_instr ::: "memory") instead of
	atomic_full_barrier.

2007-07-31  Jakub Jelinek  <jakub@redhat.com>

	* allocatestack.c (stack_cache_lock): Change type to int.
	(get_cached_stack, allocate_stack, __deallocate_stack,
	__make_stacks_executable, __find_thread_by_id, __nptl_setxid,
	__pthread_init_static_tls, __wait_lookup_done): Add LLL_PRIVATE
	as second argument to lll_lock and lll_unlock macros on
	stack_cache_lock.
	* pthread_create.c (__find_in_stack_list): Likewise.
	(start_thread): Similarly with pd->lock.  Use lll_robust_dead
	macro instead of lll_robust_mutex_dead, pass LLL_SHARED to it
	as second argument.
	* descr.h (struct pthread): Change lock and setxid_futex field
	type to int.
	* old_pthread_cond_broadcast.c (__pthread_cond_broadcast_2_0): Use
	LLL_LOCK_INITIALIZER instead of LLL_MUTEX_LOCK_INITIALIZER.
	* old_pthread_cond_signal.c (__pthread_cond_signal_2_0): Likewise.
	* old_pthread_cond_timedwait.c (__pthread_cond_timedwait_2_0):
	Likewise.
	* old_pthread_cond_wait.c (__pthread_cond_wait_2_0): Likewise.
	* pthread_cond_init.c (__pthread_cond_init): Likewise.
	* pthreadP.h (__attr_list_lock): Change type to int.
	* pthread_attr_init.c (__attr_list_lock): Likewise.
	* pthread_barrier_destroy.c (pthread_barrier_destroy): Pass
	ibarrier->private ^ FUTEX_PRIVATE_FLAG as second argument to
	lll_{,un}lock.
	* pthread_barrier_wait.c (pthread_barrier_wait): Likewise and
	also for lll_futex_{wake,wait}.
	* pthread_barrier_init.c (pthread_barrier_init): Make iattr
	a pointer to const.
	* pthread_cond_broadcast.c (__pthread_cond_broadcast): Pass
	LLL_SHARED as second argument to lll_{,un}lock.
	* pthread_cond_destroy.c (__pthread_cond_destroy): Likewise.
	* pthread_cond_signal.c (__pthread_cond_singal): Likewise.
	* pthread_cond_timedwait.c (__pthread_cond_timedwait): Likewise.
	* pthread_cond_wait.c (__condvar_cleanup, __pthread_cond_wait):
	Likewise.
	* pthread_getattr_np.c (pthread_getattr_np): Add LLL_PRIVATE
	as second argument to lll_{,un}lock macros on pd->lock.
	* pthread_getschedparam.c (__pthread_getschedparam): Likewise.
	* pthread_setschedparam.c (__pthread_setschedparam): Likewise.
	* pthread_setschedprio.c (pthread_setschedprio): Likewise.
	* tpp.c (__pthread_tpp_change_priority, __pthread_current_priority):
	Likewise.
	* sysdeps/pthread/createthread.c (do_clone, create_thread):
	Likewise.
	* pthread_once.c (once_lock): Change type to int.
	(__pthread_once): Pass LLL_PRIVATE as second argument to
	lll_{,un}lock macros on once_lock.
	* pthread_rwlock_rdlock.c (__pthread_rwlock_rdlock): Use
	lll_{,un}lock macros instead of lll_mutex_{,un}lock, pass
	rwlock->__data.__shared as second argument to them and similarly
	for lll_futex_w*.
	* pthread_rwlock_timedrdlock.c (pthread_rwlock_timedrdlock):
	Likewise.
	* pthread_rwlock_timedwrlock.c (pthread_rwlock_timedwrlock):
	Likewise.
	* pthread_rwlock_tryrdlock.c (__pthread_rwlock_tryrdlock): Likewise.
	* pthread_rwlock_trywrlock.c (__pthread_rwlock_trywrlock): Likewise.
	* pthread_rwlock_unlock.c (__pthread_rwlock_unlock): Likewise.
	* pthread_rwlock_wrlock.c (__pthread_rwlock_wrlock): Likewise.
	* sem_close.c (sem_close): Pass LLL_PRIVATE as second argument
	to lll_{,un}lock macros on __sem_mappings_lock.
	* sem_open.c (check_add_mapping): Likewise.
	(__sem_mappings_lock): Change type to int.
	* semaphoreP.h (__sem_mappings_lock): Likewise.
	* pthread_mutex_lock.c (LLL_MUTEX_LOCK, LLL_MUTEX_TRYLOCK,
	LLL_ROBUST_MUTEX_LOCK): Use lll_{,try,robust_}lock macros
	instead of lll_*mutex_*, pass LLL_SHARED as last
	argument.
	(__pthread_mutex_lock): Use lll_unlock instead of lll_mutex_unlock,
	pass LLL_SHARED as last argument.
	* sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c (LLL_MUTEX_LOCK,
	LLL_MUTEX_TRYLOCK, LLL_ROBUST_MUTEX_LOCK): Use
	lll_{cond_,cond_try,robust_cond}lock macros instead of lll_*mutex_*,
	pass LLL_SHARED as last argument.
	* pthread_mutex_timedlock.c (pthread_mutex_timedlock): Use
	lll_{timed,try,robust_timed,un}lock instead of lll_*mutex*, pass
	LLL_SHARED as last argument.
	* pthread_mutex_trylock.c (__pthread_mutex_trylock): Similarly.
	* pthread_mutex_unlock.c (__pthread_mutex_unlock_usercnt):
	Similarly.
	* sysdeps/pthread/bits/libc-lock.h (__libc_lock_lock,
	__libc_lock_lock_recursive, __libc_lock_unlock,
	__libc_lock_unlock_recursive): Pass LLL_PRIVATE as second
	argument to lll_{,un}lock.
	* sysdeps/pthread/bits/stdio-lock.h (_IO_lock_lock,
	_IO_lock_unlock): Likewise.
	* sysdeps/unix/sysv/linux/fork.c (__libc_fork): Don't use
	compound literal.
	* sysdeps/unix/sysv/linux/unregister-atfork.c (__unregister_atfork):
	Pass LLL_PRIVATE as second argument to lll_{,un}lock macros on
	__fork_lock.
	* sysdeps/unix/sysv/linux/register-atfork.c (__register_atfork,
	free_mem): Likewise.
	(__fork_lock): Change type to int.
	* sysdeps/unix/sysv/linux/fork.h (__fork_lock): Likewise.
	* sysdeps/unix/sysv/linux/sem_post.c (__new_sem_post): Pass
	isem->private ^ FUTEX_PRIVATE_FLAG as second argument to
	lll_futex_wake.
	* sysdeps/unix/sysv/linux/sem_timedwait.c (sem_timedwait): Likewise.
	* sysdeps/unix/sysv/linux/sem_wait.c (__new_sem_wait): Likewise.
	* sysdeps/unix/sysv/linux/lowlevellock.c (__lll_lock_wait_private):
	New function.
	(__lll_lock_wait, __lll_timedlock_wait): Add private argument and
	pass it through to lll_futex_*wait, only compile in when
	IS_IN_libpthread.
	* sysdeps/unix/sysv/linux/lowlevelrobustlock.c
	(__lll_robust_lock_wait, __lll_robust_timedlock_wait): Add private
	argument and pass it through to lll_futex_*wait.
	* sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Renamed all
	lll_mutex_* resp. lll_robust_mutex_* macros to lll_* resp.
	lll_robust_*.  Renamed all __lll_mutex_* resp. __lll_robust_mutex_*
	inline functions to __lll_* resp. __lll_robust_*.
	(LLL_MUTEX_LOCK_INITIALIZER): Remove.
	(lll_mutex_dead): Add private argument.
	(__lll_lock_wait_private): New prototype.
	(__lll_lock_wait, __lll_robust_lock_wait, __lll_lock_timedwait,
	__lll_robust_lock_timedwait): Add private argument to prototypes.
	(__lll_lock): Add private argument, if it is constant LLL_PRIVATE,
	call __lll_lock_wait_private, otherwise pass private to
	__lll_lock_wait.
	(__lll_robust_lock, __lll_cond_lock, __lll_timedlock,
	__lll_robust_timedlock): Add private argument, pass it to
	__lll_*wait functions.
	(__lll_unlock): Add private argument, if it is constant LLL_PRIVATE,
	call __lll_unlock_wake_private, otherwise pass private to
	__lll_unlock_wake.
	(__lll_robust_unlock): Add private argument, pass it to
	__lll_robust_unlock_wake.
	(lll_lock, lll_robust_lock, lll_cond_lock, lll_timedlock,
	lll_robust_timedlock, lll_unlock, lll_robust_unlock): Add private
	argument, pass it through to __lll_* inline function.
	(__lll_mutex_unlock_force, lll_mutex_unlock_force): Remove.
	(lll_lock_t): Remove.
	(__lll_cond_wait, __lll_cond_timedwait, __lll_cond_wake,
	__lll_cond_broadcast, lll_cond_wait, lll_cond_timedwait,
	lll_cond_wake, lll_cond_broadcast): Remove.
	* sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
	* sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
	* sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
	* sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
	* sysdeps/unix/sysv/linux/i386/lowlevellock.h: Allow including
	the header from assembler.  Renamed all lll_mutex_* resp.
	lll_robust_mutex_* macros to lll_* resp. lll_robust_*.
	(LOCK, FUTEX_CMP_REQUEUE, FUTEX_WAKE_OP,
	FUTEX_OP_CLEAR_WAKE_IF_GT_ONE): Define.
	(LLL_MUTEX_LOCK_INITIALIZER, LLL_MUTEX_LOCK_INITIALIZER_LOCKED,
	LLL_MUTEX_LOCK_INITIALIZER_WAITERS): Remove.
	(__lll_mutex_lock_wait, __lll_mutex_timedlock_wait,
	__lll_mutex_unlock_wake, __lll_lock_wait, __lll_unlock_wake):
	Remove prototype.
	(__lll_trylock_asm, __lll_lock_asm_start, __lll_unlock_asm): Define.
	(lll_robust_trylock, lll_cond_trylock): Use LLL_LOCK_INITIALIZER*
	rather than LLL_MUTEX_LOCK_INITIALIZER* macros.
	(lll_trylock): Likewise, use __lll_trylock_asm, pass
	MULTIPLE_THREADS_OFFSET as another asm operand.
	(lll_lock): Add private argument, use __lll_lock_asm_start, pass
	MULTIPLE_THREADS_OFFSET as last asm operand, call
	__lll_lock_wait_private if private is constant LLL_PRIVATE,
	otherwise pass private as another argument to __lll_lock_wait.
	(lll_robust_lock, lll_cond_lock, lll_robust_cond_lock,
	lll_timedlock, lll_robust_timedlock): Add private argument, pass
	private as another argument to __lll_*lock_wait call.
	(lll_unlock): Add private argument, use __lll_unlock_asm, pass
	MULTIPLE_THREADS_OFFSET as another asm operand, call
	__lll_unlock_wake_private if private is constant LLL_PRIVATE,
	otherwise pass private as another argument to __lll_unlock_wake.
	(lll_robust_unlock): Add private argument, pass private as another
	argument to __lll_unlock_wake.
	(lll_robust_dead): Add private argument, use __lll_private_flag
	macro.
	(lll_islocked): Use LLL_LOCK_INITIALIZER instead of
	LLL_MUTEX_LOCK_INITIALIZER.
	(lll_lock_t): Remove.
	(LLL_LOCK_INITIALIZER_WAITERS): Define.
	(__lll_cond_wait, __lll_cond_timedwait, __lll_cond_wake,
	__lll_cond_broadcast, lll_cond_wait, lll_cond_timedwait,
	lll_cond_wake, lll_cond_broadcast): Remove.
	* sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
	* sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Revert
	2007-05-2{3,9} changes.
	* sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Include
	kernel-features.h and lowlevellock.h.
	(LOAD_PRIVATE_FUTEX_WAIT): Define.
	(LOAD_FUTEX_WAIT): Rewritten.
	(LOCK, SYS_gettimeofday, SYS_futex, FUTEX_WAIT, FUTEX_WAKE): Don't
	define.
	(__lll_lock_wait_private, __lll_unlock_wake_private): New functions.
	(__lll_mutex_lock_wait): Rename to ...
	(__lll_lock_wait): ... this.  Take futex addr from %edx instead of
	%ecx, %ecx is now private argument.  Don't compile in for libc.so.
	(__lll_mutex_timedlock_wait): Rename to ...
	(__lll_timedlock_wait): ... this.  Use __NR_gettimeofday.  %esi
	contains private argument.  Don't compile in for libc.so.
	(__lll_mutex_unlock_wake): Rename to ...
	(__lll_unlock_wake): ... this.  %ecx contains private argument.
	Don't compile in for libc.so.
	(__lll_timedwait_tid): Use __NR_gettimeofday.
	* sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: Include
	kernel-features.h and lowlevellock.h.
	(LOAD_FUTEX_WAIT): Define.
	(LOCK, SYS_gettimeofday, SYS_futex, FUTEX_WAIT, FUTEX_WAKE): Don't
	define.
	(__lll_robust_mutex_lock_wait): Rename to ...
	(__lll_robust_lock_wait): ... this.  Futex addr is now in %edx
	argument, %ecx argument contains private.  Use LOAD_FUTEX_WAIT
	macro.
	(__lll_robust_mutex_timedlock_wait): Rename to ...
	(__lll_robust_timedlock_wait): ... this.  Use __NR_gettimeofday.
	%esi argument contains private, use LOAD_FUTEX_WAIT macro.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: Include
	lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, LOCK): Don't define.
	(pthread_barrier_wait): Rename __lll_mutex_* to __lll_*, pass
	PRIVATE(%ebx) ^ LLL_SHARED as private argument in %ecx to
	__lll_lock_wait and __lll_unlock_wake, pass MUTEX(%ebx) address
	to __lll_lock_wait in %edx.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S:
	Include lowlevellock.h and pthread-errnos.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_REQUEUE,
	FUTEX_CMP_REQUEUE, EINVAL, LOCK): Don't define.
	(__pthread_cond_broadcast): Rename __lll_mutex_* to __lll_*, pass
	cond_lock address in %edx rather than %ecx to __lll_lock_wait,
	pass LLL_SHARED in %ecx to both __lll_lock_wait and
	__lll_unlock_wake.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S:
	Include lowlevellock.h and pthread-errnos.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_WAKE_OP,
	FUTEX_OP_CLEAR_WAKE_IF_GT_ONE, EINVAL, LOCK): Don't define.
	(__pthread_cond_signal): Rename __lll_mutex_* to __lll_*, pass
	cond_lock address in %edx rather than %ecx to __lll_lock_wait,
	pass LLL_SHARED in %ecx to both __lll_lock_wait and
	__lll_unlock_wake.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
	Include lowlevellock.h.
	(SYS_futex, SYS_gettimeofday, FUTEX_WAIT, FUTEX_WAKE, LOCK):
	Don't define.
	(__pthread_cond_timedwait): Rename __lll_mutex_* to __lll_*, pass
	cond_lock address in %edx rather than %ecx to __lll_lock_wait,
	pass LLL_SHARED in %ecx to both __lll_lock_wait and
	__lll_unlock_wake.  Use __NR_gettimeofday.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, LOCK): Don't define.
	(__pthread_cond_wait, __condvar_w_cleanup): Rename __lll_mutex_*
	to __lll_*, pass cond_lock address in %edx rather than %ecx to
	__lll_lock_wait, pass LLL_SHARED in %ecx to both __lll_lock_wait
	and __lll_unlock_wake.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, LOCK): Don't define.
	(__pthread_rwlock_rdlock): Rename __lll_mutex_* to __lll_*, pass
	MUTEX(%ebx) address in %edx rather than %ecx to
	__lll_lock_wait, pass PSHARED(%ebx) in %ecx to both __lll_lock_wait
	and __lll_unlock_wake.  Move return value from %ecx to %edx
	register.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
	Include lowlevellock.h.
	(SYS_futex, SYS_gettimeofday, FUTEX_WAIT, FUTEX_WAKE, LOCK):
	Don't define.
	(__pthread_rwlock_wrlock): Rename __lll_mutex_* to __lll_*, pass
	MUTEX(%ebp) address in %edx rather than %ecx to
	__lll_lock_wait, pass PSHARED(%ebp) in %ecx to both __lll_lock_wait
	and __lll_unlock_wake.  Move return value from %ecx to %edx
	register.  Use __NR_gettimeofday.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
	Include lowlevellock.h.
	(SYS_futex, SYS_gettimeofday, FUTEX_WAIT, FUTEX_WAKE, LOCK):
	Don't define.
	(__pthread_rwlock_wrlock): Rename __lll_mutex_* to __lll_*, pass
	MUTEX(%ebp) address in %edx rather than %ecx to
	__lll_lock_wait, pass PSHARED(%ebp) in %ecx to both __lll_lock_wait
	and __lll_unlock_wake.  Move return value from %ecx to %edx
	register.  Use __NR_gettimeofday.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, LOCK): Don't define.
	(__pthread_rwlock_unlock): Rename __lll_mutex_* to __lll_*, pass
	MUTEX(%edi) address in %edx rather than %ecx to
	__lll_lock_wait, pass PSHARED(%edi) in %ecx to both __lll_lock_wait
	and __lll_unlock_wake.
	* sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, LOCK): Don't define.
	(__pthread_rwlock_wrlock): Rename __lll_mutex_* to __lll_*, pass
	MUTEX(%ebx) address in %edx rather than %ecx to
	__lll_lock_wait, pass PSHARED(%ebx) in %ecx to both __lll_lock_wait
	and __lll_unlock_wake.  Move return value from %ecx to %edx
	register.
	* sysdeps/unix/sysv/linux/i386/pthread_once.S: Include
	lowlevellock.h.
	(LOCK, SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_PRIVATE_FLAG): Don't
	define.
	* sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Include lowlevellock.h.
	(LOCK, SYS_futex, FUTEX_WAKE): Don't define.
	* sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Include
	lowlevellock.h.
	(LOCK, SYS_futex, SYS_gettimeofday, FUTEX_WAIT): Don't define.
	(sem_timedwait): Use __NR_gettimeofday.
	* sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Include
	lowlevellock.h.
	(LOCK): Don't define.
	* sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Include
	lowlevellock.h.
	(LOCK, SYS_futex, FUTEX_WAIT): Don't define.
	* sysdeps/unix/sysv/linux/powerpc/sem_post.c: Wake only when there
	are waiters.
	* sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: Revert
	2007-05-2{3,9} changes.
	* sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Include
	kernel-features.h and lowlevellock.h.
	(LOAD_PRIVATE_FUTEX_WAIT): Define.
	(LOAD_FUTEX_WAIT): Rewritten.
	(LOCK, SYS_futex, FUTEX_WAIT, FUTEX_WAKE): Don't define.
	(__lll_lock_wait_private, __lll_unlock_wake_private): New functions.
	(__lll_mutex_lock_wait): Rename to ...
	(__lll_lock_wait): ... this.  %esi is now private argument.
	Don't compile in for libc.so.
	(__lll_mutex_timedlock_wait): Rename to ...
	(__lll_timedlock_wait): ... this.  %esi contains private argument.
	Don't compile in for libc.so.
	(__lll_mutex_unlock_wake): Rename to ...
	(__lll_unlock_wake): ... this.  %esi contains private argument.
	Don't compile in for libc.so.
	* sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: Include
	kernel-features.h and lowlevellock.h.
	(LOAD_FUTEX_WAIT): Define.
	(LOCK, SYS_futex, FUTEX_WAIT, FUTEX_WAKE): Don't define.
	(__lll_robust_mutex_lock_wait): Rename to ...
	(__lll_robust_lock_wait): ... this.  %esi argument contains private.
	Use LOAD_FUTEX_WAIT macro.
	(__lll_robust_mutex_timedlock_wait): Rename to ...
	(__lll_robust_timedlock_wait): ... this. %esi argument contains
	private, use LOAD_FUTEX_WAIT macro.
	* sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Include
	lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, LOCK): Don't define.
	(pthread_barrier_wait): Rename __lll_mutex_* to __lll_*, pass
	PRIVATE(%rdi) ^ LLL_SHARED as private argument in %esi to
	__lll_lock_wait and __lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S:
	Include lowlevellock.h and pthread-errnos.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_REQUEUE,
	FUTEX_CMP_REQUEUE, EINVAL, LOCK): Don't define.
	(__pthread_cond_broadcast): Rename __lll_mutex_* to __lll_*,
	pass LLL_SHARED in %esi to both __lll_lock_wait and
	__lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S:
	Include lowlevellock.h and pthread-errnos.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_WAKE_OP,
	FUTEX_OP_CLEAR_WAKE_IF_GT_ONE, EINVAL, LOCK): Don't define.
	(__pthread_cond_signal): Rename __lll_mutex_* to __lll_*,
	pass LLL_SHARED in %esi to both __lll_lock_wait and
	__lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, LOCK): Don't define.
	(__pthread_cond_timedwait): Rename __lll_mutex_* to __lll_*,
	pass LLL_SHARED in %esi to both __lll_lock_wait and
	__lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, LOCK): Don't define.
	(__pthread_cond_wait, __condvar_cleanup): Rename __lll_mutex_*
	to __lll_*, pass LLL_SHARED in %esi to both __lll_lock_wait
	and __lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_PRIVATE_FLAG, LOCK):
	Don't define.
	(__pthread_rwlock_rdlock): Rename __lll_mutex_* to __lll_*,
	pass PSHARED(%rdi) in %esi to both __lll_lock_wait
	and __lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_PRIVATE_FLAG, LOCK):
	Don't define.
	(__pthread_rwlock_wrlock): Rename __lll_mutex_* to __lll_*,
	pass PSHARED(%rdi) in %esi to both __lll_lock_wait
	and __lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_PRIVATE_FLAG, LOCK):
	Don't define.
	(__pthread_rwlock_wrlock): Rename __lll_mutex_* to __lll_*,
	pass PSHARED(%rdi) in %esi to both __lll_lock_wait
	and __lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_PRIVATE_FLAG, LOCK):
	Don't define.
	(__pthread_rwlock_unlock): Rename __lll_mutex_* to __lll_*,
	pass PSHARED(%rdi) in %esi to both __lll_lock_wait
	and __lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S:
	Include lowlevellock.h.
	(SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_PRIVATE_FLAG, LOCK):
	Don't define.
	(__pthread_rwlock_wrlock): Rename __lll_mutex_* to __lll_*,
	pass PSHARED(%rdi) in %ecx to both __lll_lock_wait
	and __lll_unlock_wake.
	* sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Include
	lowlevellock.h.
	(LOCK, SYS_futex, FUTEX_WAIT, FUTEX_WAKE, FUTEX_PRIVATE_FLAG): Don't
	define.
	* sysdeps/unix/sysv/linux/x86_64/sem_post.S: Include lowlevellock.h.
	(LOCK, SYS_futex, FUTEX_WAKE): Don't define.
	* sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Include
	lowlevellock.h.
	(LOCK, SYS_futex, FUTEX_WAIT): Don't define.
	* sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Include
	lowlevellock.h.
	(LOCK): Don't define.
	* sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Include
	lowlevellock.h.
	(LOCK, SYS_futex, FUTEX_WAIT): Don't define.
	* sysdeps/unix/sysv/linux/sparc/internaltypes.h: New file.
	* sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c: New file.
	* sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c: New file.
	* sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c: New file.
	* sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c
	(__lll_lock_wait_private): New function.
	(__lll_lock_wait, __lll_timedlock_wait): Add private argument, pass
	it to lll_futex_*wait.  Don't compile in for libc.so.
	* sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_init.c:
	Remove.
	* sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c
	(struct sparc_pthread_barrier): Remove.
	(pthread_barrier_wait): Use union sparc_pthread_barrier instead of
	struct sparc_pthread_barrier.  Pass
	ibarrier->s.pshared ? LLL_SHARED : LLL_PRIVATE to lll_{,un}lock
	and lll_futex_wait macros.
	* sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_init.c:
	Remove.
	* sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_wait.c:
	Include sparc pthread_barrier_wait.c instead of generic one.
2007-08-01 04:47:26 +00:00
..
sysdeps * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
ANNOUNCE Initial revision 2002-11-26 22:50:54 +00:00
Banner 2004-06-29 Roland McGrath <roland@redhat.com> 2004-06-29 23:03:20 +00:00
ChangeLog * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
DESIGN-barrier.txt Update. 2004-09-08 07:02:28 +00:00
DESIGN-condvar.txt [BZ #163] 2004-05-18 20:18:14 +00:00
DESIGN-rwlock.txt Update. 2004-08-13 05:42:43 +00:00
DESIGN-sem.txt Make clear that futex_wake in sem_post gets passed the new value. 2003-06-19 19:49:50 +00:00
Makeconfig * Makefile (subdir-target-args): New variable. 2006-02-28 07:11:04 +00:00
Makefile * semaphoreP.h: Declare __old_sem_init and __old_sem_wait. 2007-05-26 01:31:40 +00:00
TODO * version.h (VERSION): Define to 6. 2007-05-15 06:49:29 +00:00
TODO-kernel Update. 2003-09-29 22:23:14 +00:00
TODO-testing To-Do list for testing. 2003-02-15 22:50:01 +00:00
Versions * elf/rtld-Rules (subdir-args): New variable. 2006-02-28 09:57:07 +00:00
alloca_cutoff.c 2005-02-25 Roland McGrath <roland@redhat.com> 2005-02-26 01:33:57 +00:00
allocatestack.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
cancellation.c Remove __pthread_enable_asynccancel_2. 2003-05-26 02:09:08 +00:00
cleanup.c Update. 2003-07-08 21:08:13 +00:00
cleanup_compat.c Declare __pthread_unwind. Define __do_cancel to use it. Declare old cleanup handler installation functions. 2003-04-12 00:14:16 +00:00
cleanup_defer.c Update. 2003-05-31 07:50:12 +00:00
cleanup_defer_compat.c Declare __pthread_unwind. Define __do_cancel to use it. Declare old cleanup handler installation functions. 2003-04-12 00:14:16 +00:00
cleanup_routine.c Update. 2003-06-08 05:28:14 +00:00
cond-perf.c Update. 2003-09-17 08:47:44 +00:00
configure * sysdeps/sparc/sparc32/dl-trampoline.S: Add CFI markings. 2006-03-06 01:41:08 +00:00
descr.h * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
eintr.c Update. 2003-12-21 20:05:47 +00:00
errno-loc.c 2005-12-13 Ulrich Drepper <drepper@redhat.com> 2005-12-14 08:43:25 +00:00
events.c * sysdeps/hppa/fpu/fesetround.c (fesetround): Use ~FE_DOWNWARD so both 2002-12-03 02:50:58 +00:00
forward.c * sysdeps/unix/sysv/linux/libc_pthread_init.c: Don't just copy the 2007-01-17 08:37:26 +00:00
herrno.c Update. 2003-01-03 08:11:20 +00:00
init.c * iconvdata/gbk.c (BODY): Make buf and cp char instead of unsigned 2007-07-28 20:16:07 +00:00
libc-cancellation.c * sysdeps/mach/hurd/ifreq.c: Add missing #includes. 2005-12-21 22:54:00 +00:00
lowlevellock.h [BZ #4586] 2007-06-08 02:50:59 +00:00
old_pthread_atfork.c Initial revision 2002-11-26 22:50:54 +00:00
old_pthread_cond_broadcast.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
old_pthread_cond_destroy.c Update. 2003-01-03 19:13:49 +00:00
old_pthread_cond_init.c * old_pthread_cond_init.c: Include <errno.h>. 2005-04-15 22:19:39 +00:00
old_pthread_cond_signal.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
old_pthread_cond_timedwait.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
old_pthread_cond_wait.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
perf.c * elf/dl-tsd.c (__libc_dl_error_tsd): Use attribute_tls_model_ie for 2005-09-22 07:29:50 +00:00
pt-allocrtsig.c (__libc_current_sigrtmin): Fix typo in comment. 2004-10-08 00:57:58 +00:00
pt-cleanup.c * sysdeps/mach/hurd/ifreq.c: Add missing #includes. 2005-12-21 22:54:00 +00:00
pt-raise.c 2006-02-26 Roland McGrath <roland@redhat.com> 2006-02-27 00:58:29 +00:00
pt-system.c Update. 2003-01-07 00:42:43 +00:00
pthread-errnos.sym Update. 2003-03-18 11:17:57 +00:00
pthreadP.h * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_atfork.c * pthread_atfork.c: Mark __dso_handle as hidden. 2006-05-10 22:19:45 +00:00
pthread_attr_destroy.c Update. 2004-03-19 00:14:42 +00:00
pthread_attr_getdetachstate.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_attr_getguardsize.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_attr_getinheritsched.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_attr_getschedparam.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_attr_getschedpolicy.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_attr_getscope.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_attr_getstack.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_attr_getstackaddr.c Fix typo in comment. 2004-10-08 01:00:15 +00:00
pthread_attr_getstacksize.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_attr_init.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_attr_setdetachstate.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_attr_setguardsize.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_attr_setinheritsched.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_attr_setschedparam.c Update. 2004-02-27 08:09:35 +00:00
pthread_attr_setschedpolicy.c Update. 2004-02-27 08:09:35 +00:00
pthread_attr_setscope.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_attr_setstack.c . 2007-07-31 13:33:18 +00:00
pthread_attr_setstackaddr.c Update. 2003-03-07 05:32:16 +00:00
pthread_attr_setstacksize.c . 2007-07-31 13:33:18 +00:00
pthread_barrier_destroy.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_barrier_init.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_barrier_wait.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_barrierattr_destroy.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_barrierattr_getpshared.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_barrierattr_init.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_barrierattr_setpshared.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_cancel.c Update. 2004-11-20 09:55:44 +00:00
pthread_clock_gettime.c Update. 2003-06-25 00:00:50 +00:00
pthread_clock_settime.c Update. 2003-06-25 00:00:50 +00:00
pthread_cond_broadcast.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_cond_destroy.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_cond_init.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_cond_signal.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_cond_timedwait.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_cond_wait.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_condattr_destroy.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_condattr_getclock.c * sysdeps/unix/sysv/linux/internaltypes.h: Introduce 2007-05-29 16:15:48 +00:00
pthread_condattr_getpshared.c Update. 2003-03-18 11:17:57 +00:00
pthread_condattr_init.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_condattr_setclock.c * sysdeps/unix/sysv/linux/internaltypes.h: Introduce 2007-05-29 16:15:48 +00:00
pthread_condattr_setpshared.c Update. 2003-09-03 02:58:30 +00:00
pthread_create.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_detach.c Update. 2003-04-07 21:09:12 +00:00
pthread_equal.c Update. 2002-12-19 09:18:01 +00:00
pthread_exit.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_getattr_np.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_getconcurrency.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_getcpuclockid.c . 2007-07-31 13:33:18 +00:00
pthread_getschedparam.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_getspecific.c Update. 2003-02-15 09:49:02 +00:00
pthread_join.c (cleanup): Avoid warning. 2007-01-18 22:19:38 +00:00
pthread_key_create.c * pthread_key_create.c (__pthread_key_create): Do away with 2006-05-11 17:52:42 +00:00
pthread_key_delete.c Update. 2003-03-21 08:03:25 +00:00
pthread_kill_other_threads.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_mutex_consistent.c * sysdeps/unix/sysv/linux/kernel-features.h: Add 2006-03-28 04:25:17 +00:00
pthread_mutex_destroy.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
pthread_mutex_getprioceiling.c * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
pthread_mutex_init.c * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
pthread_mutex_lock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_mutex_setprioceiling.c [BZ #4586] 2007-06-08 02:50:59 +00:00
pthread_mutex_timedlock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_mutex_trylock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_mutex_unlock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_mutexattr_destroy.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_mutexattr_getprioceiling.c * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
pthread_mutexattr_getprotocol.c * elf/rtld-Rules (subdir-args): New variable. 2006-02-28 09:57:07 +00:00
pthread_mutexattr_getpshared.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
pthread_mutexattr_getrobust.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
pthread_mutexattr_gettype.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
pthread_mutexattr_init.c * sysdeps/s390/s390-32/backtrace.c (init): Guard with #ifdef SHARED. 2004-06-11 20:12:55 +00:00
pthread_mutexattr_setprioceiling.c * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
pthread_mutexattr_setprotocol.c * elf/rtld-Rules (subdir-args): New variable. 2006-02-28 09:57:07 +00:00
pthread_mutexattr_setpshared.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
pthread_mutexattr_setrobust.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
pthread_mutexattr_settype.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
pthread_once.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_rwlock_destroy.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_rwlock_init.c * init.c: Make it compile with older kernel headers. 2007-05-27 18:06:18 +00:00
pthread_rwlock_rdlock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_rwlock_timedrdlock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_rwlock_timedwrlock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_rwlock_tryrdlock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_rwlock_trywrlock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_rwlock_unlock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_rwlock_wrlock.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_rwlockattr_destroy.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_rwlockattr_getkind_np.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_rwlockattr_getpshared.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_rwlockattr_init.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_rwlockattr_setkind_np.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_rwlockattr_setpshared.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_self.c Add namespace protected alias. 2002-12-15 19:59:08 +00:00
pthread_setcancelstate.c Update. 2003-04-05 05:21:15 +00:00
pthread_setcanceltype.c Update. 2003-04-05 05:21:15 +00:00
pthread_setconcurrency.c Update. 2003-02-15 08:21:36 +00:00
pthread_setegid.c Update. 2004-09-20 00:16:11 +00:00
pthread_seteuid.c Update. 2004-09-20 00:16:11 +00:00
pthread_setgid.c Update. 2004-09-20 00:16:11 +00:00
pthread_setregid.c Update. 2004-09-20 00:16:11 +00:00
pthread_setresgid.c Update. 2004-09-20 00:16:11 +00:00
pthread_setresuid.c Update. 2004-09-20 00:16:11 +00:00
pthread_setreuid.c Update. 2004-09-20 00:16:11 +00:00
pthread_setschedparam.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_setschedprio.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
pthread_setspecific.c [BZ #2908] 2006-08-03 09:36:43 +00:00
pthread_setuid.c Update. 2004-09-20 00:16:11 +00:00
pthread_spin_destroy.c . 2007-07-31 13:33:18 +00:00
pthread_spin_init.c . 2007-07-31 13:33:18 +00:00
pthread_spin_unlock.c . 2007-07-31 13:33:18 +00:00
pthread_testcancel.c Initial revision 2002-11-26 22:50:54 +00:00
pthread_timedjoin.c * sysdeps/mach/hurd/ifreq.c: Add missing #includes. 2005-12-21 22:54:00 +00:00
pthread_tryjoin.c * sysdeps/mach/hurd/ifreq.c: Add missing #includes. 2005-12-21 22:54:00 +00:00
res.c Update. 2003-07-22 23:10:17 +00:00
sem_close.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
sem_destroy.c Update. 2002-12-16 23:38:42 +00:00
sem_getvalue.c * semaphoreP.h: Declare __old_sem_init and __old_sem_wait. 2007-05-26 01:31:40 +00:00
sem_init.c * semaphoreP.h: Declare __old_sem_init and __old_sem_wait. 2007-05-26 01:31:40 +00:00
sem_open.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
sem_unlink.c Update. 2004-04-20 18:58:56 +00:00
semaphore.h Update. 2003-04-22 17:15:35 +00:00
semaphoreP.h * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
shlib-versions * shlib-versions: Fix sparc64 linux target specification. 2007-01-10 23:24:02 +00:00
sigaction.c * sysdeps/unix/sysv/linux/sigaction.c: If WRAPPER_INCLUDE is defined, 2005-12-29 16:34:57 +00:00
sockperf.c Initial revision 2002-11-26 22:50:54 +00:00
tpp.c * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post): 2007-08-01 04:47:26 +00:00
tst-_res1.c Update. 2003-07-22 23:10:17 +00:00
tst-_res1mod1.c Update. 2003-07-22 23:10:17 +00:00
tst-_res1mod2.c Update. 2003-07-22 23:10:17 +00:00
tst-align.c Update. 2003-09-17 08:47:44 +00:00
tst-align2.c [BZ #4455] 2007-05-10 15:17:55 +00:00
tst-align3.c [BZ #982] 2005-10-14 18:51:58 +00:00
tst-atfork1.c Update. 2003-02-13 07:14:38 +00:00
tst-atfork2.c Update. 2003-02-13 07:14:38 +00:00
tst-atfork2mod.c Update. 2003-02-13 07:14:38 +00:00
tst-attr1.c Update. 2003-02-17 06:44:07 +00:00
tst-attr2.c (do_test): Add cast to avoid warning. 2003-04-11 22:59:18 +00:00
tst-attr3.c Update. 2004-03-19 00:14:42 +00:00
tst-backtrace1.c Update. 2004-01-08 18:23:53 +00:00
tst-barrier1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-barrier2.c Update. 2004-10-04 20:51:25 +00:00
tst-barrier3.c Initial revision 2002-11-26 22:50:54 +00:00
tst-barrier4.c Update. 2004-03-07 10:40:53 +00:00
tst-basic1.c Update. 2003-03-15 07:54:39 +00:00
tst-basic2.c Update. 2004-03-07 10:40:53 +00:00
tst-basic3.c Update. 2003-02-14 23:31:11 +00:00
tst-basic4.c Update. 2003-02-15 07:55:59 +00:00
tst-basic5.c Update. 2003-02-15 08:21:36 +00:00
tst-basic6.c Update. 2003-02-18 10:59:20 +00:00
tst-cancel-wrappers.sh * posix/unistd.h: Remove __THROW from fdatasync. 2007-05-07 04:23:14 +00:00
tst-cancel1.c Update. 2003-06-08 05:28:14 +00:00
tst-cancel2.c * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto. 2006-09-18 13:48:06 +00:00
tst-cancel3.c Initial revision 2002-11-26 22:50:54 +00:00
tst-cancel4.c * posix/unistd.h: Remove __THROW from fdatasync. 2007-05-07 04:23:14 +00:00
tst-cancel5.c Update. 2002-12-14 19:49:13 +00:00
tst-cancel6.c Update. 2002-12-18 00:53:21 +00:00
tst-cancel7.c Update. 2003-02-16 22:11:14 +00:00
tst-cancel8.c Update. 2003-02-11 00:48:56 +00:00
tst-cancel9.c Update. 2004-02-21 03:20:32 +00:00
tst-cancel10.c Update. 2004-03-07 10:40:53 +00:00
tst-cancel11.c Update. 2003-04-04 07:59:55 +00:00
tst-cancel12.c Update. 2003-06-08 05:28:14 +00:00
tst-cancel13.c Update. 2003-06-08 05:28:14 +00:00
tst-cancel14.c Update. 2003-06-08 05:28:14 +00:00
tst-cancel15.c Update. 2003-06-08 05:28:14 +00:00
tst-cancel16.c Update. 2003-06-16 07:39:03 +00:00
tst-cancel17.c (do_test): Add arbitrary factor to make sure aio_write blocks. 2005-04-27 08:20:41 +00:00
tst-cancel18.c Update. 2003-06-17 22:40:05 +00:00
tst-cancel19.c Update. 2003-10-02 18:56:20 +00:00
tst-cancel20.c Update. 2004-03-10 06:05:14 +00:00
tst-cancel21.c Update. 2004-03-10 06:05:14 +00:00
tst-cancel22.c Update. 2003-12-20 06:34:59 +00:00
tst-cancel23.c Update. 2003-12-20 06:34:59 +00:00
tst-cancel24.cc * include/stdlib.h: Make even more C++ compliant. 2006-01-04 09:26:31 +00:00
tst-cancel25.c [BZ #3124] 2006-09-05 17:18:23 +00:00
tst-cancelx1.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx2.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx3.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx4.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx5.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx6.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx7.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx8.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx9.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx10.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx11.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx12.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx13.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx14.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx15.c Update. 2003-06-08 05:28:14 +00:00
tst-cancelx16.c Update. 2003-06-16 07:39:03 +00:00
tst-cancelx17.c Update. 2003-06-17 22:11:22 +00:00
tst-cancelx18.c Update. 2003-06-17 22:40:05 +00:00
tst-cancelx20.c Update. 2003-12-19 01:37:13 +00:00
tst-cancelx21.c Update. 2003-12-19 01:37:13 +00:00
tst-cleanup0.c Update. 2003-06-08 05:28:14 +00:00
tst-cleanup0.expect Declare __pthread_unwind. Define __do_cancel to use it. Declare old cleanup handler installation functions. 2003-04-12 00:14:16 +00:00
tst-cleanup1.c Update. 2003-06-08 05:28:14 +00:00
tst-cleanup2.c Update. 2003-01-28 07:27:15 +00:00
tst-cleanup3.c Update. 2003-02-13 19:50:46 +00:00
tst-cleanup4.c Update. 2003-11-06 04:29:42 +00:00
tst-cleanup4aux.c Update. 2003-11-06 09:48:05 +00:00
tst-cleanupx0.c Update. 2003-06-08 05:28:14 +00:00
tst-cleanupx0.expect Update. 2003-06-08 05:28:14 +00:00
tst-cleanupx1.c Update. 2003-06-08 05:28:14 +00:00
tst-cleanupx2.c Update. 2003-06-08 05:28:14 +00:00
tst-cleanupx3.c Update. 2003-06-08 05:28:14 +00:00
tst-cleanupx4.c Update. 2003-11-06 04:29:42 +00:00
tst-clock1.c Update. 2004-10-06 08:01:28 +00:00
tst-clock2.c Update. 2004-10-06 18:09:57 +00:00
tst-cond1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-cond2.c Update. 2004-03-07 10:40:53 +00:00
tst-cond3.c Initial revision 2002-11-26 22:50:54 +00:00
tst-cond4.c Update. 2004-10-04 20:51:25 +00:00
tst-cond5.c Initial revision 2002-11-26 22:50:54 +00:00
tst-cond6.c Update. 2004-10-04 20:51:25 +00:00
tst-cond7.c Update. 2003-02-14 01:12:02 +00:00
tst-cond8.c Update. 2003-06-24 02:50:16 +00:00
tst-cond9.c Update. 2003-02-14 03:26:28 +00:00
tst-cond10.c Update. 2004-03-07 10:40:53 +00:00
tst-cond11.c Update. 2004-10-06 08:01:28 +00:00
tst-cond12.c Update. 2003-11-21 22:38:10 +00:00
tst-cond13.c Update. 2003-11-21 09:25:26 +00:00
tst-cond14.c Update. 2004-02-28 10:18:58 +00:00
tst-cond15.c Update. 2004-02-28 10:18:58 +00:00
tst-cond16.c [BZ #163] 2004-05-18 20:18:14 +00:00
tst-cond17.c [BZ #163] 2004-05-18 20:18:14 +00:00
tst-cond18.c [BZ #163] 2004-05-18 20:18:14 +00:00
tst-cond19.c Update. 2004-06-18 04:29:42 +00:00
tst-cond20.c Update. 2004-09-02 22:47:23 +00:00
tst-cond21.c [BZ #357] 2004-09-02 18:59:24 +00:00
tst-cond22.c 2006-09-14 Jakub Jelinek <jakub@redhat.com> 2006-09-15 07:48:10 +00:00
tst-context1.c Update. 2004-12-17 05:16:26 +00:00
tst-detach1.c Update. 2003-04-08 18:23:59 +00:00
tst-dlsym1.c Update. 2003-02-27 04:42:04 +00:00
tst-eintr1.c Update. 2003-12-20 06:34:59 +00:00
tst-eintr2.c (tf1): Improve error message. 2003-12-21 19:52:55 +00:00
tst-eintr3.c Update. 2003-12-20 06:34:59 +00:00
tst-eintr4.c Update. 2003-12-20 06:34:59 +00:00
tst-eintr5.c Update. 2003-12-21 20:05:47 +00:00
tst-exec1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-exec2.c Initial revision 2002-11-26 22:50:54 +00:00
tst-exec3.c Initial revision 2002-11-26 22:50:54 +00:00
tst-exec4.c Update. 2003-06-01 18:07:34 +00:00
tst-execstack-mod.c Update. 2003-09-24 08:33:01 +00:00
tst-execstack.c Test for changing stack exec permission. 2003-09-24 03:07:10 +00:00
tst-exit1.c Update. 2003-02-27 23:45:12 +00:00
tst-exit2.c Update. 2004-11-09 23:12:36 +00:00
tst-exit3.c Update. 2004-11-10 07:54:40 +00:00
tst-fini1.c Test for deadlock situation when running destructors for DSOs. 2004-07-07 07:36:37 +00:00
tst-fini1mod.c Test for deadlock situation when running destructors for DSOs. 2004-07-07 07:36:37 +00:00
tst-flock1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-flock2.c Update. 2004-10-04 20:51:25 +00:00
tst-fork1.c Update. 2004-03-07 10:40:53 +00:00
tst-fork2.c Tests for getppid in MT applications. 2002-12-02 08:07:18 +00:00
tst-fork3.c Tests for getppid in MT applications. 2002-12-02 08:07:18 +00:00
tst-fork4.c 2003-03-16 Roland McGrath <roland@redhat.com> 2003-03-17 02:48:28 +00:00
tst-getpid1.c [BZ #4455] 2007-05-10 15:17:55 +00:00
tst-getpid2.c Update. 2004-12-07 20:34:18 +00:00
tst-getpid3.c * stdlib/test-canon.c (do_test): Close fd before unlinking file so 2006-08-01 06:40:11 +00:00
tst-initializers1-c89.c * tst-initializers1-c89.c: New file. 2006-01-09 23:05:00 +00:00
tst-initializers1-c99.c * tst-initializers1-c89.c: New file. 2006-01-09 23:05:00 +00:00
tst-initializers1-gnu89.c * tst-initializers1-c89.c: New file. 2006-01-09 23:05:00 +00:00
tst-initializers1-gnu99.c * tst-initializers1-c89.c: New file. 2006-01-09 23:05:00 +00:00
tst-initializers1.c * init.c: Make it compile with older kernel headers. 2007-05-27 18:06:18 +00:00
tst-join1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-join2.c Initial revision 2002-11-26 22:50:54 +00:00
tst-join3.c Initial revision 2002-11-26 22:50:54 +00:00
tst-join4.c Update. 2004-03-07 10:40:53 +00:00
tst-join5.c [BZ #2843] 2006-08-13 01:56:09 +00:00
tst-join6.c [BZ #2843] 2006-08-13 01:56:09 +00:00
tst-key1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-key2.c Initial revision 2002-11-26 22:50:54 +00:00
tst-key3.c Initial revision 2002-11-26 22:50:54 +00:00
tst-key4.c Update. 2004-03-07 10:40:53 +00:00
tst-kill1.c Update. 2003-02-21 20:29:49 +00:00
tst-kill2.c Update. 2003-02-21 20:29:49 +00:00
tst-kill3.c Update. 2003-02-22 20:02:35 +00:00
tst-kill4.c * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto. 2006-09-18 13:48:06 +00:00
tst-kill5.c Update. 2003-02-21 21:07:28 +00:00
tst-kill6.c Update. 2004-03-07 10:40:53 +00:00
tst-locale1.c Avoid warnings. 2007-04-06 22:19:46 +00:00
tst-locale2.c * nss/nsswitch.c (__nss_lookup_function): Don't cast &ni->known to 2007-07-28 20:36:21 +00:00
tst-mutex1.c * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
tst-mutex2.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutex3.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutex4.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutex5.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutex5a.c Update. 2004-03-24 06:36:06 +00:00
tst-mutex6.c * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
tst-mutex7.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutex7a.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutex8.c Update. 2003-06-22 23:55:27 +00:00
tst-mutex9.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi1.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi2.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi3.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi4.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi5.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi5a.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi6.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi7.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi7a.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi8.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpi9.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-mutexpp1.c * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
tst-mutexpp6.c * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
tst-mutexpp10.c * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
tst-oddstacklimit.c * tst-oddstacklimit.c: New file. 2003-12-23 23:07:41 +00:00
tst-once1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-once2.c Update. 2004-03-07 10:40:53 +00:00
tst-once3.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
tst-once4.c Remove unnecessary macro definition. 2004-03-07 10:05:54 +00:00
tst-oncex3.c Update. 2003-07-01 03:29:50 +00:00
tst-oncex4.c Update. 2003-07-01 03:29:50 +00:00
tst-popen1.c Update. 2003-02-10 23:11:15 +00:00
tst-raise1.c Update. 2003-12-29 17:59:41 +00:00
tst-robust1.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robust2.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
tst-robust3.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
tst-robust4.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
tst-robust5.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
tst-robust6.c * Versions.def: Add GLIBC_2.4 for libpthread. 2005-12-27 01:04:06 +00:00
tst-robust7.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robust8.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robust9.c * tst-robust9.c (do_test): Don't fail if ENABLE_PI and 2007-05-21 22:12:40 +00:00
tst-robustpi1.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robustpi2.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robustpi3.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robustpi4.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robustpi5.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robustpi6.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robustpi7.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robustpi8.c 2006-07-28 Ulrich Drepper <drepper@redhat.com> 2006-07-29 04:42:09 +00:00
tst-robustpi9.c Commit missing test case wrapper file. 2007-05-19 08:21:27 +00:00
tst-rwlock1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-rwlock2.c Initial revision 2002-11-26 22:50:54 +00:00
tst-rwlock3.c Initial revision 2002-11-26 22:50:54 +00:00
tst-rwlock4.c Update. 2004-10-04 20:51:25 +00:00
tst-rwlock5.c Initial revision 2002-11-26 22:50:54 +00:00
tst-rwlock6.c Update. 2003-05-30 17:50:29 +00:00
tst-rwlock7.c [BZ #3840] 2007-01-12 17:02:22 +00:00
tst-rwlock8.c Update. 2003-02-27 08:01:47 +00:00
tst-rwlock9.c Update. 2003-02-27 19:49:35 +00:00
tst-rwlock10.c Update. 2003-02-27 08:01:47 +00:00
tst-rwlock11.c Update. 2003-02-27 08:01:47 +00:00
tst-rwlock12.c Update. 2004-10-04 20:51:25 +00:00
tst-rwlock13.c Update. 2004-02-18 20:02:17 +00:00
tst-rwlock14.c * stdlib/tst-strtod2.c (do_test): Use %tu in fmt string for ptrdiff_t 2007-08-01 03:44:35 +00:00
tst-sched1.c Update. 2003-08-03 06:47:02 +00:00
tst-sem1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-sem2.c Initial revision 2002-11-26 22:50:54 +00:00
tst-sem3.c Update. 2003-04-08 18:23:59 +00:00
tst-sem4.c Initial revision 2002-11-26 22:50:54 +00:00
tst-sem5.c Update. 2003-03-08 10:30:42 +00:00
tst-sem6.c Update. 2003-05-10 05:36:37 +00:00
tst-sem7.c Update. 2003-05-17 20:53:32 +00:00
tst-sem8.c Update. 2003-07-31 19:26:38 +00:00
tst-sem9.c Update. 2003-07-31 19:26:38 +00:00
tst-sem10.c Test of semaphores. 2007-05-26 01:23:04 +00:00
tst-sem11.c Test of semaphores. 2007-05-26 01:23:04 +00:00
tst-sem12.c Test of semaphores. 2007-05-26 01:23:04 +00:00
tst-setuid1-static.c Update. 2004-11-12 01:27:04 +00:00
tst-setuid1.c Update. 2004-11-12 01:27:04 +00:00
tst-signal1.c Update. 2004-10-04 20:51:25 +00:00
tst-signal2.c 2003-03-16 Roland McGrath <roland@redhat.com> 2003-03-17 02:48:28 +00:00
tst-signal3.c Update. 2004-03-07 10:40:53 +00:00
tst-signal4.c Update. 2003-02-17 10:22:52 +00:00
tst-signal5.c Update. 2003-02-17 23:49:52 +00:00
tst-signal6.c Update. 2003-05-30 06:03:38 +00:00
tst-signal7.c * Makefile (tests): Add tst-signal7. 2005-12-28 20:50:14 +00:00
tst-spin1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-spin2.c Update. 2004-10-04 20:51:25 +00:00
tst-spin3.c Initial revision 2002-11-26 22:50:54 +00:00
tst-stack1.c Update. 2003-09-03 03:22:23 +00:00
tst-stack2.c Update. 2003-09-03 09:26:15 +00:00
tst-stack3.c Update. 2004-05-04 19:25:38 +00:00
tst-stackguard1-static.c * Versions.def (ld): Add GLIBC_2.4. 2005-06-26 18:14:26 +00:00
tst-stackguard1.c * Versions.def (ld): Add GLIBC_2.4. 2005-06-26 18:14:26 +00:00
tst-stdio1.c Update. 2002-12-07 05:39:20 +00:00
tst-stdio2.c Update. 2002-12-07 05:39:20 +00:00
tst-sysconf.c 2003-03-23 Roland McGrath <roland@redhat.com> 2003-03-23 09:59:34 +00:00
tst-tls1.c Update. 2004-03-07 10:40:53 +00:00
tst-tls2.c Update. 2004-03-07 10:40:53 +00:00
tst-tls3.c Update. 2004-03-07 10:40:53 +00:00
tst-tls3mod.c Update. 2003-09-02 00:33:28 +00:00
tst-tls4.c Update. 2003-07-31 07:42:20 +00:00
tst-tls4moda.c Update. 2003-07-31 07:42:20 +00:00
tst-tls4modb.c Update. 2003-07-31 07:42:20 +00:00
tst-tls5.c Update. 2003-09-02 00:33:28 +00:00
tst-tls5.h . 2007-07-31 13:33:18 +00:00
tst-tls5mod.c Update. 2003-09-02 00:33:28 +00:00
tst-tls5moda.c Update. 2003-09-02 00:33:28 +00:00
tst-tls5modb.c Update. 2003-09-02 00:33:28 +00:00
tst-tls5modc.c Update. 2003-09-02 00:33:28 +00:00
tst-tls5modd.c Update. 2003-09-02 00:33:28 +00:00
tst-tls5mode.c Update. 2003-09-02 00:33:28 +00:00
tst-tls5modf.c Update. 2003-09-02 00:33:28 +00:00
tst-tls6.sh New test. 2003-09-02 22:02:59 +00:00
tst-tpp.h * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve): 2006-08-14 23:11:18 +00:00
tst-tsd1.c Initial revision 2002-11-26 22:50:54 +00:00
tst-tsd2.c Update. 2003-04-01 01:24:00 +00:00
tst-tsd3.c Update. 2003-04-02 03:51:24 +00:00
tst-tsd4.c Check PTHREAD_DESTRUCTOR_ITERATIONS handling. 2003-04-02 04:00:53 +00:00
tst-tsd5.c Update. 2004-03-31 01:47:34 +00:00
tst-typesizes.c * semaphoreP.h: Declare __old_sem_init and __old_sem_wait. 2007-05-26 01:31:40 +00:00
tst-umask1.c Update. 2003-04-08 18:23:59 +00:00
tst-unload.c 2005-02-25 Roland McGrath <roland@redhat.com> 2005-02-26 01:33:57 +00:00
tst-vfork1.c Update. 2004-03-10 05:25:48 +00:00
tst-vfork1x.c Update. 2004-03-10 05:25:48 +00:00
tst-vfork2.c Update. 2004-03-10 05:25:48 +00:00
tst-vfork2x.c Update. 2004-03-10 05:25:48 +00:00
unwind.c * sysdeps/mach/hurd/ifreq.c: Add missing #includes. 2005-12-21 22:54:00 +00:00
vars.c Update. 2004-11-20 07:16:31 +00:00
version.c Update copyright year. 2006-01-01 19:15:56 +00:00