OSDN Git Service

libpthread/nptl: core of the "Native Posix Threading Library" for uClibc
authorAustin Foxley <austinf@cetoncorp.com>
Sat, 17 Oct 2009 19:26:24 +0000 (12:26 -0700)
committerAustin Foxley <austinf@cetoncorp.com>
Sat, 17 Oct 2009 19:26:24 +0000 (12:26 -0700)
commitc68d0fa2d88fc2134a38d99e7e944828384a7671
tree6596943bd1c77f18d6e49d4153ddd3f3d67b49f5
parent9a03e98a3b418f33c347a6023e9320f3a42cb9e4
libpthread/nptl: core of the "Native Posix Threading Library" for uClibc

targetting arm,sh,i386,mips,sparc for now

Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
626 files changed:
libpthread/nptl/.gitignore [new file with mode: 0644]
libpthread/nptl/ChangeLog [new file with mode: 0644]
libpthread/nptl/Makefile [new file with mode: 0644]
libpthread/nptl/Makefile.in [new file with mode: 0644]
libpthread/nptl/README.NPTL [new file with mode: 0644]
libpthread/nptl/alloca_cutoff.c [new file with mode: 0644]
libpthread/nptl/allocatestack.c [new file with mode: 0644]
libpthread/nptl/banner.h [new file with mode: 0644]
libpthread/nptl/cancellation.c [new file with mode: 0644]
libpthread/nptl/cleanup.c [new file with mode: 0644]
libpthread/nptl/cleanup_compat.c [new file with mode: 0644]
libpthread/nptl/cleanup_defer.c [new file with mode: 0644]
libpthread/nptl/cleanup_defer_compat.c [new file with mode: 0644]
libpthread/nptl/cleanup_routine.c [new file with mode: 0644]
libpthread/nptl/descr.h [new file with mode: 0644]
libpthread/nptl/eintr.c [new file with mode: 0644]
libpthread/nptl/events.c [new file with mode: 0644]
libpthread/nptl/forward.c [new file with mode: 0644]
libpthread/nptl/herrno.c [new file with mode: 0644]
libpthread/nptl/init.c [new file with mode: 0644]
libpthread/nptl/libc-cancellation.c [new file with mode: 0644]
libpthread/nptl/linux_fsinfo.h [new file with mode: 0644]
libpthread/nptl/pt-cleanup.c [new file with mode: 0644]
libpthread/nptl/pt-system.c [new file with mode: 0644]
libpthread/nptl/pthread-errnos.sym [new file with mode: 0644]
libpthread/nptl/pthreadP.h [new file with mode: 0644]
libpthread/nptl/pthread_atfork.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_destroy.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_getdetachstate.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_getguardsize.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_getinheritsched.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_getschedparam.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_getschedpolicy.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_getscope.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_getstack.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_getstackaddr.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_getstacksize.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_init.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_setdetachstate.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_setguardsize.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_setinheritsched.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_setschedparam.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_setschedpolicy.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_setscope.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_setstack.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_setstackaddr.c [new file with mode: 0644]
libpthread/nptl/pthread_attr_setstacksize.c [new file with mode: 0644]
libpthread/nptl/pthread_barrier_destroy.c [new file with mode: 0644]
libpthread/nptl/pthread_barrier_init.c [new file with mode: 0644]
libpthread/nptl/pthread_barrierattr_destroy.c [new file with mode: 0644]
libpthread/nptl/pthread_barrierattr_getpshared.c [new file with mode: 0644]
libpthread/nptl/pthread_barrierattr_init.c [new file with mode: 0644]
libpthread/nptl/pthread_barrierattr_setpshared.c [new file with mode: 0644]
libpthread/nptl/pthread_cancel.c [new file with mode: 0644]
libpthread/nptl/pthread_clock_gettime.c [new file with mode: 0644]
libpthread/nptl/pthread_clock_settime.c [new file with mode: 0644]
libpthread/nptl/pthread_cond_destroy.c [new file with mode: 0644]
libpthread/nptl/pthread_cond_init.c [new file with mode: 0644]
libpthread/nptl/pthread_condattr_destroy.c [new file with mode: 0644]
libpthread/nptl/pthread_condattr_getclock.c [new file with mode: 0644]
libpthread/nptl/pthread_condattr_getpshared.c [new file with mode: 0644]
libpthread/nptl/pthread_condattr_init.c [new file with mode: 0644]
libpthread/nptl/pthread_condattr_setclock.c [new file with mode: 0644]
libpthread/nptl/pthread_condattr_setpshared.c [new file with mode: 0644]
libpthread/nptl/pthread_create.c [new file with mode: 0644]
libpthread/nptl/pthread_detach.c [new file with mode: 0644]
libpthread/nptl/pthread_equal.c [new file with mode: 0644]
libpthread/nptl/pthread_exit.c [new file with mode: 0644]
libpthread/nptl/pthread_getattr_np.c [new file with mode: 0644]
libpthread/nptl/pthread_getconcurrency.c [new file with mode: 0644]
libpthread/nptl/pthread_getschedparam.c [new file with mode: 0644]
libpthread/nptl/pthread_getspecific.c [new file with mode: 0644]
libpthread/nptl/pthread_join.c [new file with mode: 0644]
libpthread/nptl/pthread_key_create.c [new file with mode: 0644]
libpthread/nptl/pthread_key_delete.c [new file with mode: 0644]
libpthread/nptl/pthread_kill_other_threads.c [new file with mode: 0644]
libpthread/nptl/pthread_mutex_destroy.c [new file with mode: 0644]
libpthread/nptl/pthread_mutex_init.c [new file with mode: 0644]
libpthread/nptl/pthread_mutex_lock.c [new file with mode: 0644]
libpthread/nptl/pthread_mutex_timedlock.c [new file with mode: 0644]
libpthread/nptl/pthread_mutex_trylock.c [new file with mode: 0644]
libpthread/nptl/pthread_mutex_unlock.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_destroy.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_getpshared.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_gettype.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_init.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_setpshared.c [new file with mode: 0644]
libpthread/nptl/pthread_mutexattr_settype.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlock_destroy.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlock_init.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlock_tryrdlock.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlock_trywrlock.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlockattr_destroy.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlockattr_getkind_np.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlockattr_getpshared.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlockattr_init.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlockattr_setkind_np.c [new file with mode: 0644]
libpthread/nptl/pthread_rwlockattr_setpshared.c [new file with mode: 0644]
libpthread/nptl/pthread_self.c [new file with mode: 0644]
libpthread/nptl/pthread_setcancelstate.c [new file with mode: 0644]
libpthread/nptl/pthread_setcanceltype.c [new file with mode: 0644]
libpthread/nptl/pthread_setconcurrency.c [new file with mode: 0644]
libpthread/nptl/pthread_setegid.c [new file with mode: 0644]
libpthread/nptl/pthread_seteuid.c [new file with mode: 0644]
libpthread/nptl/pthread_setgid.c [new file with mode: 0644]
libpthread/nptl/pthread_setregid.c [new file with mode: 0644]
libpthread/nptl/pthread_setresgid.c [new file with mode: 0644]
libpthread/nptl/pthread_setresuid.c [new file with mode: 0644]
libpthread/nptl/pthread_setreuid.c [new file with mode: 0644]
libpthread/nptl/pthread_setschedparam.c [new file with mode: 0644]
libpthread/nptl/pthread_setschedprio.c [new file with mode: 0644]
libpthread/nptl/pthread_setspecific.c [new file with mode: 0644]
libpthread/nptl/pthread_setuid.c [new file with mode: 0644]
libpthread/nptl/pthread_testcancel.c [new file with mode: 0644]
libpthread/nptl/pthread_timedjoin.c [new file with mode: 0644]
libpthread/nptl/pthread_tryjoin.c [new file with mode: 0644]
libpthread/nptl/res.c [new file with mode: 0644]
libpthread/nptl/sem_close.c [new file with mode: 0644]
libpthread/nptl/sem_destroy.c [new file with mode: 0644]
libpthread/nptl/sem_getvalue.c [new file with mode: 0644]
libpthread/nptl/sem_init.c [new file with mode: 0644]
libpthread/nptl/sem_open.c [new file with mode: 0644]
libpthread/nptl/sem_unlink.c [new file with mode: 0644]
libpthread/nptl/semaphore.h [new file with mode: 0644]
libpthread/nptl/semaphoreP.h [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/dl-tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/elf/pt-initfini.c [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/libc-tls.c [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/pthread_spin_lock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/pthread_spin_trylock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/tcb-offsets.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/alpha/tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/aeabi_read_tp.S [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/aeabi_unwind_cpp_pr1.c [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/dl-tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/pthread_spin_lock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/pthread_spin_trylock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/tcb-offsets.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/thumb_atomics.S [new file with mode: 0644]
libpthread/nptl/sysdeps/arm/tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/generic/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/generic/Makefile.in [new file with mode: 0644]
libpthread/nptl/sysdeps/generic/dl-tls.c [new file with mode: 0644]
libpthread/nptl/sysdeps/generic/dl-tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/generic/libc-tls.c [new file with mode: 0644]
libpthread/nptl/sysdeps/generic/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/generic/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/dl-tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/i486/pthread_spin_trylock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/i586/pthread_spin_trylock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/i686/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/i686/pthread_spin_trylock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/i686/tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/pthread_spin_init.c [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/pthread_spin_lock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/pthread_spin_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/tcb-offsets.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/i386/tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/dl-tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/libc-tls.c [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/nptl-sysdep.S [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/pthread_spin_lock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/pthread_spin_trylock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/regdef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/tcb-offsets.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/mips/tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/powerpc/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/powerpc/dl-tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/powerpc/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/powerpc/pthread_spin_lock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/powerpc/pthread_spin_trylock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/powerpc/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/powerpc/tcb-offsets.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/powerpc/tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/Makefile.in [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/allocalim.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/bits/libc-lock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/bits/libc-tsd.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/bits/sigthread.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/bits/stdio-lock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/createthread.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/defs.awk [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/librt-cancellation.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/list.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/malloc-machine.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/posix-timer.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pt-initfini.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pt-longjmp.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread-functions.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_barrier_wait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_cond_broadcast.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_cond_signal.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_cond_timedwait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_cond_wait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_once.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_rwlock_rdlock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedrdlock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_rwlock_unlock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_rwlock_wrlock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_sigmask.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_spin_destroy.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_spin_init.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/pthread_spin_unlock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/rt-unwind-resume.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/setxid.h [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/sigaction.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/sigfillset.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/sigprocmask.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/timer_create.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/timer_delete.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/timer_getoverr.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/timer_gettime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/timer_routines.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/timer_settime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/unwind-forcedunwind.c [new file with mode: 0644]
libpthread/nptl/sysdeps/pthread/unwind-resume.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/dl-tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/pthread_spin_init.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/pthread_spin_lock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/pthread_spin_trylock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/pthread_spin_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/tcb-offsets.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/sh/tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/dl-tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc32/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc32/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc64/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc64/pthread_spin_lock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/sparc64/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/tcb-offsets.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/sparc/tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sh/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/Makefile.in [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/__syscall_error.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/accept.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/Versions [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits/local_lim.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/bits/semaphore.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/createthread.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/pthread_once.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/sem_post.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_create.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_delete.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_getoverr.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_gettime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/timer_settime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/alpha/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/bits/atomic.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/bits/pthreadtypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/bits/semaphore.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/createthread.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/lowlevellock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/pt-__syscall_error.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/pt-__syscall_rt_sigaction.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/pt-gettimeofday.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/pthread_once.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/unwind-resume.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/arm/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/close.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/connect.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/creat.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/createthread.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/exit-thread.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/fork.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/getpid.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/bits/pthreadtypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/bits/semaphore.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/createthread.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/pt-__syscall_error.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_init.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/smp.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/i386/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/internaltypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/jmp-unwind.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/lowlevellock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/lseek.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/bits/pthreadtypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/bits/semaphore.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/createthread.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/pt-__syscall_rt_sigaction.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/pt-clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/pthread_once.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mips/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/mq_notify.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/msync.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/nanosleep.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/not-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/open.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pause.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/Versions [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/not-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-accept.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-close.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-connect.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-fcntl.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-fsync.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-llseek.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-lseek.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-msgrcv.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-msgsnd.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-msync.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-nanosleep.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-open.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-open64.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-pause.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-pread_pwrite.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-raise.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-read.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-recv.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-recvfrom.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-recvmsg.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-send.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-sendmsg.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-sendto.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-sigwait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-sleep.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-tcdrain.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-wait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-waitpid.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pt-write.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_kill.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/pthread_yield.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/raise.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/read.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/recv.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/recvfrom.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/recvmsg.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/register-atfork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sem_post.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sem_timedwait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sem_trywait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sem_wait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/send.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sendmsg.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sendto.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/createthread.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pt-initfini.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_post.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sh4/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/smp.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sh/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sigtimedwait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sigwait.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sleep.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/smp.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Makefile.arch [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/Versions [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/libc-lowlevellock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/sysdep.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/sparc/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/timer_create.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/timer_delete.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/timer_getoverr.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/timer_gettime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/timer_routines.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/timer_settime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/unregister-atfork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/unwindbuf.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/waitpid.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/write.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/Versions [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/bits/pthreadtypes.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/bits/semaphore.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/clone.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/fork.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/not-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_init.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c [new file with mode: 0644]
libpthread/nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/Makefile [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/dl-tls.h [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/jmpbuf-unwind.h [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/pthread_spin_init.c [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/pthread_spin_lock.c [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/pthread_spin_trylock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/pthread_spin_unlock.S [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/pthreaddef.h [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/tcb-offsets.sym [new file with mode: 0644]
libpthread/nptl/sysdeps/x86_64/tls.h [new file with mode: 0644]
libpthread/nptl/unwind.c [new file with mode: 0644]
libpthread/nptl/vars.c [new file with mode: 0644]
libpthread/nptl/version.c [new file with mode: 0644]
libpthread/nptl/version.h [new file with mode: 0644]