diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-05-18 00:55:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-05-18 00:55:10 +0000 |
commit | 113ad5fc9192340269d2ce19b896d51309e785ea (patch) | |
tree | 0028c672ecec9626a07fa3dfc5bcba89b690d2f4 /nptl/Makefile | |
parent | bec51a302f0e7046fcb8c4fcd13ea2969a43a9b7 (diff) | |
download | glibc-113ad5fc9192340269d2ce19b896d51309e785ea.tar.gz glibc-113ad5fc9192340269d2ce19b896d51309e785ea.tar.xz glibc-113ad5fc9192340269d2ce19b896d51309e785ea.zip |
[BZ #4512]
* pthread_mutex_lock.c: Preserve FUTEX_WAITERS bit when dead owner is detected. * pthread_mutex_timedlock.c: Likewise. * pthread_mutex_trylock.c: Likewise. Patch in part by Atsushi Nemoto <anemo@mba.ocn.ne.jp>. * Makefile (tests): Add tst-robust9 and tst-robustpi9. * tst-robust9.c: New file. * tst-robustpi9.c: New file.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 9393cab009..42f2fe699f 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2002,2003,2004,2005,2006 Free Software Foundation, Inc. +# Copyright (C) 2002,2003,2004,2005,2006,2007 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -209,9 +209,9 @@ tests = tst-typesizes \ tst-cond14 tst-cond15 tst-cond16 tst-cond17 tst-cond18 tst-cond19 \ tst-cond20 tst-cond21 tst-cond22 \ tst-robust1 tst-robust2 tst-robust3 tst-robust4 tst-robust5 \ - tst-robust6 tst-robust7 tst-robust8 \ - tst-robustpi1 tst-robustpi2 tst-robustpi3 tst-robustpi4 \ - tst-robustpi5 tst-robustpi6 tst-robustpi7 tst-robustpi8 \ + tst-robust6 tst-robust7 tst-robust8 tst-robust9 \ + tst-robustpi1 tst-robustpi2 tst-robustpi3 tst-robustpi4 tst-robustpi5 \ + tst-robustpi6 tst-robustpi7 tst-robustpi8 tst-robustpi9 \ tst-rwlock1 tst-rwlock2 tst-rwlock3 tst-rwlock4 tst-rwlock5 \ tst-rwlock6 tst-rwlock7 tst-rwlock8 tst-rwlock9 tst-rwlock10 \ tst-rwlock11 tst-rwlock12 tst-rwlock13 tst-rwlock14 \ |