OSDN Git Service

mass sync with glibc nptl
authorAustin Foxley <austinf@cetoncorp.com>
Tue, 16 Feb 2010 20:27:18 +0000 (12:27 -0800)
committerAustin Foxley <austinf@cetoncorp.com>
Tue, 16 Feb 2010 20:27:18 +0000 (12:27 -0800)
commita032a6587011cbdac8c2f7e11f15dc4e592bbb55
treeb8d8dfc6abf0168e098223c2134a3e4bd7640942
parent70f1d42b13a741f603472f405299e5d2938aa728
mass sync with glibc nptl

Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
299 files changed:
.gitignore
include/atomic.h
libpthread/nptl/.gitignore
libpthread/nptl/ChangeLog
libpthread/nptl/DESIGN-barrier.txt [new file with mode: 0644]
libpthread/nptl/DESIGN-condvar.txt [new file with mode: 0644]
libpthread/nptl/DESIGN-rwlock.txt [new file with mode: 0644]
libpthread/nptl/DESIGN-sem.txt [new file with mode: 0644]
libpthread/nptl/Makefile.in
libpthread/nptl/TODO [new file with mode: 0644]
libpthread/nptl/TODO-kernel [new file with mode: 0644]
libpthread/nptl/TODO-testing [new file with mode: 0644]
libpthread/nptl/allocatestack.c
libpthread/nptl/cancellation.c
libpthread/nptl/descr.h
libpthread/nptl/forward.c
libpthread/nptl/init.c
libpthread/nptl/libc-cancellation.c
libpthread/nptl/pt-cleanup.c
libpthread/nptl/pt-system.c
libpthread/nptl/pthread-errnos.sym
libpthread/nptl/pthreadP.h
libpthread/nptl/pthread_atfork.c
libpthread/nptl/pthread_attr_destroy.c
libpthread/nptl/pthread_attr_getdetachstate.c
libpthread/nptl/pthread_attr_init.c
libpthread/nptl/pthread_attr_setschedparam.c
libpthread/nptl/pthread_attr_setstack.c
libpthread/nptl/pthread_barrier_destroy.c
libpthread/nptl/pthread_barrier_init.c
libpthread/nptl/pthread_cancel.c
libpthread/nptl/pthread_cond_destroy.c
libpthread/nptl/pthread_cond_init.c
libpthread/nptl/pthread_condattr_getclock.c
libpthread/nptl/pthread_condattr_setclock.c
libpthread/nptl/pthread_create.c
libpthread/nptl/pthread_getattr_np.c
libpthread/nptl/pthread_getschedparam.c
libpthread/nptl/pthread_join.c
libpthread/nptl/pthread_key_create.c
libpthread/nptl/pthread_mutex_consistent.c [new file with mode: 0644]
libpthread/nptl/pthread_mutex_destroy.c
libpthread/nptl/pthread_mutex_getprioceiling.c [new file with mode: 0644]
libpthread/nptl/pthread_mutex_init.c
libpthread/nptl/pthread_mutex_lock.c
libpthread/nptl/pthread_mutex_setprioceiling.c [new file with mode: 0644]
libpthread/nptl/pthread_mutex_timedlock.c
libpthread/nptl/pthread_mutex_trylock.c
libpthread/nptl/pthread_mutex_unlock.c
libpthread/nptl/pthread_mutexattr_getprioceiling.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_getprotocol.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_getpshared.c
libpthread/nptl/pthread_mutexattr_getrobust.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_gettype.c
libpthread/nptl/pthread_mutexattr_init.c
libpthread/nptl/pthread_mutexattr_setprioceiling.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_setprotocol.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_setpshared.c
libpthread/nptl/pthread_mutexattr_setrobust.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_settype.c
libpthread/nptl/pthread_rwlock_init.c
libpthread/nptl/pthread_rwlock_tryrdlock.c
libpthread/nptl/pthread_rwlock_trywrlock.c
libpthread/nptl/pthread_setschedparam.c
libpthread/nptl/pthread_setschedprio.c
libpthread/nptl/pthread_setspecific.c
libpthread/nptl/pthread_timedjoin.c
libpthread/nptl/pthread_tryjoin.c
libpthread/nptl/res.c
libpthread/nptl/sem_close.c
libpthread/nptl/sem_destroy.c
libpthread/nptl/sem_getvalue.c
libpthread/nptl/sem_init.c
libpthread/nptl/sem_open.c
libpthread/nptl/sem_unlink.c
libpthread/nptl/semaphoreP.h
libpthread/nptl/sysdeps/arm/tls.h
libpthread/nptl/sysdeps/generic/lowlevellock.h
libpthread/nptl/sysdeps/i386/pthread_spin_lock.c
libpthread/nptl/sysdeps/i386/tcb-offsets.sym
libpthread/nptl/sysdeps/i386/tls.h
libpthread/nptl/sysdeps/powerpc/tcb-offsets.sym
libpthread/nptl/sysdeps/powerpc/tls.h
libpthread/nptl/sysdeps/pthread/Makefile.in
libpthread/nptl/sysdeps/pthread/allocalim.h
libpthread/nptl/sysdeps/pthread/bits/libc-lock.h
libpthread/nptl/sysdeps/pthread/bits/sigthread.h
libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h
libpthread/nptl/sysdeps/pthread/createthread.c
libpthread/nptl/sysdeps/pthread/librt-cancellation.c
libpthread/nptl/sysdeps/pthread/list.h
libpthread/nptl/sysdeps/pthread/malloc-machine.h
libpthread/nptl/sysdeps/pthread/pt-initfini.c
libpthread/nptl/sysdeps/pthread/pt-longjmp.c
libpthread/nptl/sysdeps/pthread/pthread-functions.h
libpthread/nptl/sysdeps/pthread/pthread.h
libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c
libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c
libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c
libpthread/nptl/sysdeps/pthread/pthread_cond_timedwait.c
libpthread/nptl/sysdeps/pthread/pthread_cond_wait.c
libpthread/nptl/sysdeps/pthread/pthread_once.c
libpthread/nptl/sysdeps/pthread/pthread_rwlock_rdlock.c
libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedrdlock.c
libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c
libpthread/nptl/sysdeps/pthread/pthread_rwlock_unlock.c
libpthread/nptl/sysdeps/pthread/pthread_rwlock_wrlock.c
libpthread/nptl/sysdeps/pthread/pthread_spin_destroy.c
libpthread/nptl/sysdeps/pthread/setxid.h
libpthread/nptl/sysdeps/pthread/sigaction.c
libpthread/nptl/sysdeps/pthread/sigfillset.c
libpthread/nptl/sysdeps/pthread/tpp.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/unwind-forcedunwind.c
libpthread/nptl/sysdeps/pthread/unwind-resume.c
libpthread/nptl/sysdeps/sh/tcb-offsets.sym
libpthread/nptl/sysdeps/sh/tls.h
libpthread/nptl/sysdeps/sparc/tcb-offsets.sym
libpthread/nptl/sysdeps/sparc/tls.h
libpthread/nptl/sysdeps/unix/sysv/linux/Makefile.in
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/Versions [deleted file]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits/local_lim.h
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits/semaphore.h
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/lowlevellock.h
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/pthread_once.c
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/vfork.S
libpthread/nptl/sysdeps/unix/sysv/linux/arm/bits/atomic.h
libpthread/nptl/sysdeps/unix/sysv/linux/arm/bits/pthreadtypes.h
libpthread/nptl/sysdeps/unix/sysv/linux/arm/bits/semaphore.h
libpthread/nptl/sysdeps/unix/sysv/linux/arm/lowlevellock.c
libpthread/nptl/sysdeps/unix/sysv/linux/arm/lowlevellock.h
libpthread/nptl/sysdeps/unix/sysv/linux/arm/pthread_once.c
libpthread/nptl/sysdeps/unix/sysv/linux/arm/sysdep-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c
libpthread/nptl/sysdeps/unix/sysv/linux/arm/unwind-resume.c
libpthread/nptl/sysdeps/unix/sysv/linux/arm/unwind.h
libpthread/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h
libpthread/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h
libpthread/nptl/sysdeps/unix/sysv/linux/fork.c
libpthread/nptl/sysdeps/unix/sysv/linux/fork.h
libpthread/nptl/sysdeps/unix/sysv/linux/getpid.c
libpthread/nptl/sysdeps/unix/sysv/linux/i386/Makefile.arch
libpthread/nptl/sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h
libpthread/nptl/sysdeps/unix/sysv/linux/i386/bits/semaphore.h
libpthread/nptl/sysdeps/unix/sysv/linux/i386/fork.c
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h
libpthread/nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S
libpthread/nptl/sysdeps/unix/sysv/linux/i386/smp.h
libpthread/nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/i386/vfork.S
libpthread/nptl/sysdeps/unix/sysv/linux/internaltypes.h
libpthread/nptl/sysdeps/unix/sysv/linux/jmp-unwind.c
libpthread/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c
libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym
libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym
libpthread/nptl/sysdeps/unix/sysv/linux/lowlevellock.c
libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym
libpthread/nptl/sysdeps/unix/sysv/linux/mips/bits/pthreadtypes.h
libpthread/nptl/sysdeps/unix/sysv/linux/mips/bits/semaphore.h
libpthread/nptl/sysdeps/unix/sysv/linux/mips/lowlevellock.h
libpthread/nptl/sysdeps/unix/sysv/linux/mips/pthread_once.c
libpthread/nptl/sysdeps/unix/sysv/linux/mips/sysdep-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/mq_notify.c
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/Versions [deleted file]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions [deleted file]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c
libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c
libpthread/nptl/sysdeps/unix/sysv/linux/pt-raise.c
libpthread/nptl/sysdeps/unix/sysv/linux/pthread-pi-defines.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_kill.c
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/raise.c
libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c
libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c
libpthread/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c
libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c
libpthread/nptl/sysdeps/unix/sysv/linux/sh/Makefile.arch
libpthread/nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h
libpthread/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h
libpthread/nptl/sysdeps/unix/sysv/linux/sh/fork.c
libpthread/nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h
libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h
libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pt-initfini.c
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_post.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/sh/vfork.S
libpthread/nptl/sysdeps/unix/sysv/linux/smp.h
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Makefile.arch
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Versions [deleted file]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/internaltypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.c
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/not-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions [deleted file]
libpthread/nptl/sysdeps/unix/sysv/linux/structsem.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/timer_create.c
libpthread/nptl/sysdeps/unix/sysv/linux/timer_delete.c
libpthread/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c
libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c
libpthread/nptl/sysdeps/unix/sysv/linux/unregister-atfork.c
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/Versions [deleted file]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S
libpthread/nptl/sysdeps/x86_64/Makefile [deleted file]
libpthread/nptl/sysdeps/x86_64/tcb-offsets.sym
libpthread/nptl/sysdeps/x86_64/tls.h
libpthread/nptl/unwind.c
libpthread/nptl/vars.c
libpthread/nptl/version.c
librt/kernel-posix-timers.h