cvs-libpthread
authorGNU Libc Maintainers <debian-glibc@lists.debian.org>
Thu, 29 Mar 2018 19:47:29 +0000 (20:47 +0100)
committerAurelien Jarno <aurel32@debian.org>
Thu, 29 Mar 2018 19:47:29 +0000 (20:47 +0100)
commitaeeb9516712caa14b0c83b812cf9570de41e6449
treef379cf7e17d32813e00c65774f304de9fa540bc3
parent93cc1ceab71be9500276ddf2d91a351bdb601ac6
cvs-libpthread

lsdiff -p2 cvs-libpthread.diff > orderfile
git diff empty --patch-with-stat --src-prefix=glibc/libpthread/ --dst-prefix=glibc/libpthread/ -Oorderfile 64727f50e23a744e1607cb6aff72f0813d56c6c9
from git.savannah.gnu.org:/srv/git/hurd/libpthread.git/
thus by construction only libpthread/ files, thus hurd-only
Date: Tue Sep 26 21:29:14 2017 +0200

 ChangeLog                                     |   6 +
 Makeconfig                                    |  13 +
 Makefile                                      | 365 +++++++++++
 TODO                                          | 131 ++++
 Versions                                      | 155 +++++
 configure                                     |   2 +
 configure.in                                  |   4 +
 forward.c                                     | 281 +++++++++
 sysdeps/pthread/pthread.h                     |  22 +
 include/pthread/pthread.h                     | 835 ++++++++++++++++++++++++++
 include/pthread/pthreadtypes.h                | 125 ++++
 libc_pthread_init.c                           |  35 ++
 libpthread.a                                  |  22 +
 libpthread_pic.a                              |  22 +
 lockfile.c                                    |  65 ++
 not-in-libc.h                                 |  12 +
 pthread/Versions                              |  15 +
 pthread/alloca_cutoff.c                       |  27 +
 pthread/cthreads-compat.c                     | 102 ++++
 pthread/pt-alloc.c                            | 219 +++++++
 pthread/pt-cancel.c                           |  63 ++
 pthread/pt-cleanup.c                          |  28 +
 pthread/pt-create.c                           | 254 ++++++++
 pthread/pt-dealloc.c                          |  69 +++
 pthread/pt-detach.c                           |  80 +++
 pthread/pt-exit.c                             | 112 ++++
 pthread/pt-getattr.c                          |  52 ++
 pthread/pt-initialize.c                       |  88 +++
 pthread/pt-internal.h                         | 330 ++++++++++
 pthread/pt-join.c                             |  76 +++
 pthread/pt-self.c                             |  34 ++
 pthread/pt-setcancelstate.c                   |  47 ++
 pthread/pt-setcanceltype.c                    |  47 ++
 pthread/pt-sigmask.c                          |  33 +
 pthread/pt-spin-inlines.c                     |  34 ++
 pthread/pt-testcancel.c                       |  36 ++
 pthread/pt-yield.c                            |  26 +
 pthreadP.h                                    |  27 +
 shlib-versions                                |   1 +
 sysdeps/generic/fork.h                        |  29 +
 sysdeps/generic/old_pt-atfork.c               |  27 +
 sysdeps/generic/pt-atfork.c                   |  34 ++
 sysdeps/generic/pt-attr-destroy.c             |  28 +
 sysdeps/generic/pt-attr-getdetachstate.c      |  31 +
 sysdeps/generic/pt-attr-getguardsize.c        |  29 +
 sysdeps/generic/pt-attr-getinheritsched.c     |  31 +
 sysdeps/generic/pt-attr-getschedparam.c       |  34 ++
 sysdeps/generic/pt-attr-getschedpolicy.c      |  31 +
 sysdeps/generic/pt-attr-getscope.c            |  31 +
 sysdeps/generic/pt-attr-getstack.c            |  32 +
 sysdeps/generic/pt-attr-getstackaddr.c        |  29 +
 sysdeps/generic/pt-attr-getstacksize.c        |  29 +
 sysdeps/generic/pt-attr-init.c                |  29 +
 sysdeps/generic/pt-attr-setdetachstate.c      |  40 ++
 sysdeps/generic/pt-attr-setguardsize.c        |  29 +
 sysdeps/generic/pt-attr-setinheritsched.c     |  40 ++
 sysdeps/generic/pt-attr-setschedparam.c       |  40 ++
 sysdeps/generic/pt-attr-setschedpolicy.c      |  44 ++
 sysdeps/generic/pt-attr-setscope.c            |  43 ++
 sysdeps/generic/pt-attr-setstack.c            |  51 ++
 sysdeps/generic/pt-attr-setstackaddr.c        |  29 +
 sysdeps/generic/pt-attr-setstacksize.c        |  30 +
 sysdeps/generic/pt-attr.c                     |  41 ++
 sysdeps/generic/pt-barrier-destroy.c          |  27 +
 sysdeps/generic/pt-barrier-init.c             |  53 ++
 sysdeps/generic/pt-barrier-wait.c             |  69 +++
 sysdeps/generic/pt-barrier.c                  |  26 +
 sysdeps/generic/pt-barrierattr-destroy.c      |  27 +
 sysdeps/generic/pt-barrierattr-getpshared.c   |  29 +
 sysdeps/generic/pt-barrierattr-init.c         |  28 +
 sysdeps/generic/pt-barrierattr-setpshared.c   |  39 ++
 sysdeps/generic/pt-cond-brdcast.c             |  45 ++
 sysdeps/generic/pt-cond-destroy.c             |  29 +
 sysdeps/generic/pt-cond-init.c                |  47 ++
 sysdeps/generic/pt-cond-signal.c              |  43 ++
 sysdeps/generic/pt-cond-timedwait.c           | 178 ++++++
 sysdeps/generic/pt-cond-wait.c                |  39 ++
 sysdeps/generic/pt-cond.c                     |  29 +
 sysdeps/generic/pt-condattr-destroy.c         |  29 +
 sysdeps/generic/pt-condattr-getclock.c        |  31 +
 sysdeps/generic/pt-condattr-getpshared.c      |  29 +
 sysdeps/generic/pt-condattr-init.c            |  30 +
 sysdeps/generic/pt-condattr-setclock.c        |  52 ++
 sysdeps/generic/pt-condattr-setpshared.c      |  39 ++
 sysdeps/generic/pt-destroy-specific.c         |  28 +
 sysdeps/generic/pt-equal.c                    |  31 +
 sysdeps/generic/pt-getconcurrency.c           |  27 +
 sysdeps/generic/pt-getcpuclockid.c            |  35 ++
 sysdeps/generic/pt-getschedparam.c            |  32 +
 sysdeps/generic/pt-getspecific.c              |  27 +
 sysdeps/generic/pt-init-specific.c            |  27 +
 sysdeps/generic/pt-key-create.c               |  30 +
 sysdeps/generic/pt-key-delete.c               |  29 +
 sysdeps/generic/pt-key.h                      |  22 +
 sysdeps/generic/pt-kill.c                     |  33 +
 sysdeps/generic/pt-mutex-destroy.c            |  39 ++
 sysdeps/generic/pt-mutex-getprioceiling.c     |  30 +
 sysdeps/generic/pt-mutex-init.c               |  50 ++
 sysdeps/generic/pt-mutex-lock.c               |  37 ++
 sysdeps/generic/pt-mutex-setprioceiling.c     |  30 +
 sysdeps/generic/pt-mutex-timedlock.c          | 196 ++++++
 sysdeps/generic/pt-mutex-transfer-np.c        |  66 ++
 sysdeps/generic/pt-mutex-trylock.c            | 112 ++++
 sysdeps/generic/pt-mutex-unlock.c             | 108 ++++
 sysdeps/generic/pt-mutexattr-destroy.c        |  27 +
 sysdeps/generic/pt-mutexattr-getprioceiling.c |  30 +
 sysdeps/generic/pt-mutexattr-getprotocol.c    |  29 +
 sysdeps/generic/pt-mutexattr-getpshared.c     |  29 +
 sysdeps/generic/pt-mutexattr-gettype.c        |  28 +
 sysdeps/generic/pt-mutexattr-init.c           |  28 +
 sysdeps/generic/pt-mutexattr-setprioceiling.c |  30 +
 sysdeps/generic/pt-mutexattr-setprotocol.c    |  42 ++
 sysdeps/generic/pt-mutexattr-setpshared.c     |  39 ++
 sysdeps/generic/pt-mutexattr-settype.c        |  37 ++
 sysdeps/generic/pt-mutexattr.c                |  45 ++
 sysdeps/generic/pt-once.c                     |  45 ++
 sysdeps/generic/pt-rwlock-attr.c              |  26 +
 sysdeps/generic/pt-rwlock-destroy.c           |  29 +
 sysdeps/generic/pt-rwlock-init.c              |  45 ++
 sysdeps/generic/pt-rwlock-rdlock.c            |  33 +
 sysdeps/generic/pt-rwlock-timedrdlock.c       | 121 ++++
 sysdeps/generic/pt-rwlock-timedwrlock.c       | 104 ++++
 sysdeps/generic/pt-rwlock-tryrdlock.c         |  56 ++
 sysdeps/generic/pt-rwlock-trywrlock.c         |  46 ++
 sysdeps/generic/pt-rwlock-unlock.c            |  99 +++
 sysdeps/generic/pt-rwlock-wrlock.c            |  35 ++
 sysdeps/generic/pt-rwlockattr-destroy.c       |  27 +
 sysdeps/generic/pt-rwlockattr-getpshared.c    |  29 +
 sysdeps/generic/pt-rwlockattr-init.c          |  28 +
 sysdeps/generic/pt-rwlockattr-setpshared.c    |  39 ++
 sysdeps/generic/pt-setconcurrency.c           |  34 ++
 sysdeps/generic/pt-setschedparam.c            |  31 +
 sysdeps/generic/pt-setschedprio.c             |  29 +
 sysdeps/generic/pt-setspecific.c              |  27 +
 sysdeps/generic/pt-startup.c                  |  25 +
 sysdeps/generic/raise.c                       |  51 ++
 sysdeps/generic/sem-close.c                   |  32 +
 sysdeps/generic/sem-destroy.c                 |  38 ++
 sysdeps/generic/sem-getvalue.c                |  33 +
 sysdeps/generic/sem-init.c                    |  46 ++
 sysdeps/generic/sem-open.c                    |  32 +
 sysdeps/generic/sem-post.c                    |  62 ++
 sysdeps/generic/sem-timedwait.c               | 100 +++
 sysdeps/generic/sem-trywait.c                 |  42 ++
 sysdeps/generic/sem-unlink.c                  |  32 +
 sysdeps/generic/sem-wait.c                    |  32 +
 sysdeps/generic/shm-directory.h               |  31 +
 sysdeps/hurd/pt-destroy-specific.c            |  77 +++
 sysdeps/hurd/pt-getspecific.c                 |  39 ++
 sysdeps/hurd/pt-init-specific.c               |  31 +
 sysdeps/hurd/pt-key-create.c                  | 110 ++++
 sysdeps/hurd/pt-key-delete.c                  |  64 ++
 sysdeps/hurd/pt-key.h                         |  77 +++
 sysdeps/hurd/pt-kill.c                        |  52 ++
 sysdeps/hurd/pt-setspecific.c                 |  51 ++
 sysdeps/i386/bits/memory.h                    |  40 ++
 sysdeps/i386/bits/pt-atomic.h                 |  66 ++
 sysdeps/i386/bits/pthreadtypes-arch.h         |  21 +
 sysdeps/pthread/bits/thread-shared-types.h    |  24 +
 sysdeps/i386/machine-sp.h                     |  30 +
 sysdeps/i386/pt-machdep.h                     |  29 +
 sysdeps/mach/bits/spin-lock-inline.h          |  90 +++
 sysdeps/mach/bits/spin-lock.h                 |  38 ++
 sysdeps/mach/hurd/Implies                     |   2 +
 sysdeps/mach/hurd/bits/pthread-np.h           |  38 ++
 sysdeps/mach/hurd/i386/pt-machdep.c           |  83 +++
 sysdeps/mach/hurd/i386/pt-setup.c             | 110 ++++
 sysdeps/mach/hurd/pt-attr-setstackaddr.c      |  29 +
 sysdeps/mach/hurd/pt-attr-setstacksize.c      |  29 +
 sysdeps/mach/hurd/pt-docancel.c               |  66 ++
 sysdeps/mach/hurd/pt-hurd-cond-timedwait.c    | 169 ++++++
 sysdeps/mach/hurd/pt-hurd-cond-wait.c         |  41 ++
 sysdeps/mach/hurd/pt-sigstate-destroy.c       |  28 +
 sysdeps/mach/hurd/pt-sigstate-init.c          |  44 ++
 sysdeps/mach/hurd/pt-sigstate.c               |  80 +++
 sysdeps/mach/hurd/pt-sysdep.c                 |  98 +++
 sysdeps/mach/hurd/pt-sysdep.h                 |  67 +++
 sysdeps/mach/i386/bits/spin-lock-inline.h     |  98 +++
 sysdeps/mach/i386/bits/spin-lock.h            |  39 ++
 sysdeps/mach/pt-block.c                       |  39 ++
 sysdeps/mach/pt-spin.c                        |  36 ++
 sysdeps/mach/pt-stack-alloc.c                 |  69 +++
 sysdeps/mach/pt-thread-alloc.c                |  95 +++
 sysdeps/mach/pt-thread-start.c                |  51 ++
 sysdeps/mach/pt-thread-terminate.c            |  85 +++
 sysdeps/mach/pt-timedblock.c                  |  68 +++
 sysdeps/mach/pt-wakeup.c                      |  38 ++
 sysdeps/posix/pt-spin.c                       |  54 ++
 sysdeps/pthread/Makefile                      |   7 +
 sysdeps/pthread/bits/barrier-attr.h           |  32 +
 sysdeps/pthread/bits/barrier.h                |  39 ++
 sysdeps/pthread/bits/cancelation.h            |  51 ++
 sysdeps/pthread/bits/condition-attr.h         |  34 ++
 sysdeps/pthread/bits/condition.h              |  39 ++
 sysdeps/pthread/bits/mutex-attr.h             |  41 ++
 sysdeps/pthread/bits/mutex.h                  |  75 +++
 sysdeps/pthread/bits/once.h                   |  34 ++
 sysdeps/pthread/bits/pthread-np.h             |  27 +
 sysdeps/pthread/bits/pthread.h                |  38 ++
 sysdeps/pthread/bits/pthreadtypes.h           |  30 +
 sysdeps/pthread/bits/rwlock-attr.h            |  32 +
 sysdeps/pthread/bits/rwlock.h                 |  46 ++
 sysdeps/pthread/bits/semaphore.h              |  44 ++
 sysdeps/pthread/bits/thread-attr.h            |  47 ++
 sysdeps/pthread/bits/thread-specific.h        |  25 +
 sysdeps/pthread/flockfile.c                   |  32 +
 sysdeps/pthread/ftrylockfile.c                |  35 ++
 sysdeps/pthread/funlockfile.c                 |  33 +
 sysdeps/pthread/libc-lockP.h                  | 158 +++++
 sysdeps/pthread/pthread-functions.h           | 141 +++++
 sysdeps/pthread/semaphore.h                   |  81 +++
 tests/.cvsignore                              |   1 +
 tests/Makefile                                |  40 ++
 tests/README                                  |   6 +
 tests/test-1.c                                |  50 ++
 tests/test-10.c                               |  46 ++
 tests/test-11.c                               | 143 +++++
 tests/test-12.c                               |  29 +
 tests/test-13.c                               |  66 ++
 tests/test-14.c                               |  44 ++
 tests/test-15.c                               |  87 +++
 tests/test-16.c                               |  71 +++
 tests/test-17.c                               |  57 ++
 tests/test-2.c                                |  39 ++
 tests/test-3.c                                |  55 ++
 tests/test-4.c                                |  86 +++
 tests/test-5.c                                |  75 +++
 tests/test-6.c                                |  96 +++
 tests/test-7.c                                |  70 +++
 tests/test-8.c                                |  60 ++
 tests/test-9.c                                |  88 +++
 tests/test-__pthread_destroy_specific-skip.c  |  83 +++
 232 files changed, 13224 insertions(+)

Gbp-Pq: Topic hurd-i386
Gbp-Pq: Name cvs-libpthread.diff
232 files changed:
libpthread/ChangeLog [new file with mode: 0644]
libpthread/Makeconfig [new file with mode: 0644]
libpthread/Makefile [new file with mode: 0644]
libpthread/TODO [new file with mode: 0644]
libpthread/Versions [new file with mode: 0644]
libpthread/configure [new file with mode: 0644]
libpthread/configure.in [new file with mode: 0644]
libpthread/forward.c [new file with mode: 0644]
libpthread/include/pthread/pthread.h [new file with mode: 0644]
libpthread/include/pthread/pthreadtypes.h [new file with mode: 0644]
libpthread/libc_pthread_init.c [new file with mode: 0644]
libpthread/libpthread.a [new file with mode: 0644]
libpthread/libpthread_pic.a [new file with mode: 0644]
libpthread/lockfile.c [new file with mode: 0644]
libpthread/not-in-libc.h [new file with mode: 0644]
libpthread/pthread/Versions [new file with mode: 0644]
libpthread/pthread/alloca_cutoff.c [new file with mode: 0644]
libpthread/pthread/cthreads-compat.c [new file with mode: 0644]
libpthread/pthread/pt-alloc.c [new file with mode: 0644]
libpthread/pthread/pt-cancel.c [new file with mode: 0644]
libpthread/pthread/pt-cleanup.c [new file with mode: 0644]
libpthread/pthread/pt-create.c [new file with mode: 0644]
libpthread/pthread/pt-dealloc.c [new file with mode: 0644]
libpthread/pthread/pt-detach.c [new file with mode: 0644]
libpthread/pthread/pt-exit.c [new file with mode: 0644]
libpthread/pthread/pt-getattr.c [new file with mode: 0644]
libpthread/pthread/pt-initialize.c [new file with mode: 0644]
libpthread/pthread/pt-internal.h [new file with mode: 0644]
libpthread/pthread/pt-join.c [new file with mode: 0644]
libpthread/pthread/pt-self.c [new file with mode: 0644]
libpthread/pthread/pt-setcancelstate.c [new file with mode: 0644]
libpthread/pthread/pt-setcanceltype.c [new file with mode: 0644]
libpthread/pthread/pt-sigmask.c [new file with mode: 0644]
libpthread/pthread/pt-spin-inlines.c [new file with mode: 0644]
libpthread/pthread/pt-testcancel.c [new file with mode: 0644]
libpthread/pthread/pt-yield.c [new file with mode: 0644]
libpthread/pthreadP.h [new file with mode: 0644]
libpthread/shlib-versions [new file with mode: 0644]
libpthread/sysdeps/generic/fork.h [new file with mode: 0644]
libpthread/sysdeps/generic/old_pt-atfork.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-atfork.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-getdetachstate.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-getguardsize.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-getinheritsched.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-getschedparam.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-getschedpolicy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-getscope.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-getstack.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-getstackaddr.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-getstacksize.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-setdetachstate.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-setguardsize.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-setinheritsched.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-setschedparam.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-setschedpolicy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-setscope.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-setstack.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-setstackaddr.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr-setstacksize.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-attr.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-barrier-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-barrier-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-barrier-wait.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-barrier.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-barrierattr-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-barrierattr-getpshared.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-barrierattr-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-barrierattr-setpshared.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-cond-brdcast.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-cond-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-cond-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-cond-signal.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-cond-timedwait.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-cond-wait.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-cond.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-condattr-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-condattr-getclock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-condattr-getpshared.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-condattr-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-condattr-setclock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-condattr-setpshared.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-destroy-specific.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-equal.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-getconcurrency.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-getcpuclockid.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-getschedparam.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-getspecific.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-init-specific.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-key-create.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-key-delete.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-key.h [new file with mode: 0644]
libpthread/sysdeps/generic/pt-kill.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutex-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutex-getprioceiling.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutex-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutex-lock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutex-setprioceiling.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutex-timedlock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutex-transfer-np.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutex-trylock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutex-unlock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-getprioceiling.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-getprotocol.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-getpshared.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-gettype.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-setprioceiling.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-setprotocol.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-setpshared.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr-settype.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-mutexattr.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-once.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-attr.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-rdlock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-timedrdlock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-timedwrlock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-tryrdlock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-trywrlock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-unlock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlock-wrlock.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlockattr-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlockattr-getpshared.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlockattr-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-rwlockattr-setpshared.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-setconcurrency.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-setschedparam.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-setschedprio.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-setspecific.c [new file with mode: 0644]
libpthread/sysdeps/generic/pt-startup.c [new file with mode: 0644]
libpthread/sysdeps/generic/raise.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-close.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-destroy.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-getvalue.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-init.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-open.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-post.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-timedwait.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-trywait.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-unlink.c [new file with mode: 0644]
libpthread/sysdeps/generic/sem-wait.c [new file with mode: 0644]
libpthread/sysdeps/generic/shm-directory.h [new file with mode: 0644]
libpthread/sysdeps/hurd/pt-destroy-specific.c [new file with mode: 0644]
libpthread/sysdeps/hurd/pt-getspecific.c [new file with mode: 0644]
libpthread/sysdeps/hurd/pt-init-specific.c [new file with mode: 0644]
libpthread/sysdeps/hurd/pt-key-create.c [new file with mode: 0644]
libpthread/sysdeps/hurd/pt-key-delete.c [new file with mode: 0644]
libpthread/sysdeps/hurd/pt-key.h [new file with mode: 0644]
libpthread/sysdeps/hurd/pt-kill.c [new file with mode: 0644]
libpthread/sysdeps/hurd/pt-setspecific.c [new file with mode: 0644]
libpthread/sysdeps/i386/bits/memory.h [new file with mode: 0644]
libpthread/sysdeps/i386/bits/pt-atomic.h [new file with mode: 0644]
libpthread/sysdeps/i386/bits/pthreadtypes-arch.h [new file with mode: 0644]
libpthread/sysdeps/i386/machine-sp.h [new file with mode: 0644]
libpthread/sysdeps/i386/pt-machdep.h [new file with mode: 0644]
libpthread/sysdeps/mach/bits/spin-lock-inline.h [new file with mode: 0644]
libpthread/sysdeps/mach/bits/spin-lock.h [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/Implies [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/bits/pthread-np.h [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/i386/pt-machdep.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/i386/pt-setup.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-attr-setstackaddr.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-attr-setstacksize.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-docancel.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-hurd-cond-timedwait.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-hurd-cond-wait.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-sigstate-destroy.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-sigstate-init.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-sigstate.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-sysdep.c [new file with mode: 0644]
libpthread/sysdeps/mach/hurd/pt-sysdep.h [new file with mode: 0644]
libpthread/sysdeps/mach/i386/bits/spin-lock-inline.h [new file with mode: 0644]
libpthread/sysdeps/mach/i386/bits/spin-lock.h [new file with mode: 0644]
libpthread/sysdeps/mach/pt-block.c [new file with mode: 0644]
libpthread/sysdeps/mach/pt-spin.c [new file with mode: 0644]
libpthread/sysdeps/mach/pt-stack-alloc.c [new file with mode: 0644]
libpthread/sysdeps/mach/pt-thread-alloc.c [new file with mode: 0644]
libpthread/sysdeps/mach/pt-thread-start.c [new file with mode: 0644]
libpthread/sysdeps/mach/pt-thread-terminate.c [new file with mode: 0644]
libpthread/sysdeps/mach/pt-timedblock.c [new file with mode: 0644]
libpthread/sysdeps/mach/pt-wakeup.c [new file with mode: 0644]
libpthread/sysdeps/posix/pt-spin.c [new file with mode: 0644]
libpthread/sysdeps/pthread/Makefile [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/barrier-attr.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/barrier.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/cancelation.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/condition-attr.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/condition.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/mutex-attr.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/mutex.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/once.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/pthread-np.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/pthread.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/pthreadtypes.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/rwlock-attr.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/rwlock.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/semaphore.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/thread-attr.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/thread-shared-types.h [new file with mode: 0644]
libpthread/sysdeps/pthread/bits/thread-specific.h [new file with mode: 0644]
libpthread/sysdeps/pthread/flockfile.c [new file with mode: 0644]
libpthread/sysdeps/pthread/ftrylockfile.c [new file with mode: 0644]
libpthread/sysdeps/pthread/funlockfile.c [new file with mode: 0644]
libpthread/sysdeps/pthread/libc-lockP.h [new file with mode: 0644]
libpthread/sysdeps/pthread/pthread-functions.h [new file with mode: 0644]
libpthread/sysdeps/pthread/pthread.h [new file with mode: 0644]
libpthread/sysdeps/pthread/semaphore.h [new file with mode: 0644]
libpthread/tests/.cvsignore [new file with mode: 0644]
libpthread/tests/Makefile [new file with mode: 0644]
libpthread/tests/README [new file with mode: 0644]
libpthread/tests/test-1.c [new file with mode: 0644]
libpthread/tests/test-10.c [new file with mode: 0644]
libpthread/tests/test-11.c [new file with mode: 0644]
libpthread/tests/test-12.c [new file with mode: 0644]
libpthread/tests/test-13.c [new file with mode: 0644]
libpthread/tests/test-14.c [new file with mode: 0644]
libpthread/tests/test-15.c [new file with mode: 0644]
libpthread/tests/test-16.c [new file with mode: 0644]
libpthread/tests/test-17.c [new file with mode: 0644]
libpthread/tests/test-2.c [new file with mode: 0644]
libpthread/tests/test-3.c [new file with mode: 0644]
libpthread/tests/test-4.c [new file with mode: 0644]
libpthread/tests/test-5.c [new file with mode: 0644]
libpthread/tests/test-6.c [new file with mode: 0644]
libpthread/tests/test-7.c [new file with mode: 0644]
libpthread/tests/test-8.c [new file with mode: 0644]
libpthread/tests/test-9.c [new file with mode: 0644]
libpthread/tests/test-__pthread_destroy_specific-skip.c [new file with mode: 0644]