diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-12-20 06:34:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-12-20 06:34:59 +0000 |
commit | 4efdd8d355a378ab85278bef1c00c05c46ab49e4 (patch) | |
tree | 2711786af8a2b51279bfefbe3acb481bd45e2e6b /nptl/Makefile | |
parent | 8a7455e70db36c00281a31f60e899d6b424e732b (diff) | |
download | glibc-4efdd8d355a378ab85278bef1c00c05c46ab49e4.tar glibc-4efdd8d355a378ab85278bef1c00c05c46ab49e4.tar.gz glibc-4efdd8d355a378ab85278bef1c00c05c46ab49e4.tar.bz2 glibc-4efdd8d355a378ab85278bef1c00c05c46ab49e4.zip |
Update.
2003-12-19 Ulrich Drepper <drepper@redhat.com>
* eintr.c (setup_eintr): Add new parameter. Pass to thread function.
(eintr_source): If ARG != NULL, use pthread_kill.
* tst-eintr1.c: Adjust for this change.
* tst-eintr2.c: Likewise.
* Makefile (tests): Add tst-eintr3 and tst-eintr4.
* tst-eintr3.c: New file.
* tst-eintr4.c: New file.
2003-12-19 Jakub Jelinek <jakub@redhat.com>
* libc-cancellation.c (__libc_enable_asynccancel): Don't cancel
if CANCELSTATE_BITMASK is set.
* sysdeps/pthread/librt-cancellation.c (__librt_enable_asynccancel):
Likewise.
* Makefile (tests): Add tst-cancel22 and tst-cancel23.
(tests-reverse): Add tst-cancel23.
* tst-cancel22.c: New test.
* tst-cancel23.c: New test.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 91d43d85ee..6876768d93 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -207,7 +207,7 @@ tests = tst-attr1 tst-attr2 tst-attr3 \ tst-kill1 tst-kill2 tst-kill3 tst-kill4 tst-kill5 tst-kill6 \ tst-join1 tst-join2 tst-join3 tst-join4 tst-join5 \ tst-detach1 \ - tst-eintr1 tst-eintr2 \ + tst-eintr1 tst-eintr2 tst-eintr3 tst-eintr4 \ tst-tsd1 tst-tsd2 tst-tsd3 tst-tsd4 \ tst-tls1 tst-tls2 \ tst-fork1 tst-fork2 tst-fork3 tst-fork4 \ @@ -216,7 +216,7 @@ tests = tst-attr1 tst-attr2 tst-attr3 \ tst-cancel6 tst-cancel7 tst-cancel8 tst-cancel9 tst-cancel10 \ tst-cancel11 tst-cancel12 tst-cancel13 tst-cancel14 tst-cancel15 \ tst-cancel16 tst-cancel17 tst-cancel18 tst-cancel19 tst-cancel20 \ - tst-cancel21 \ + tst-cancel21 tst-cancel22 tst-cancel23 \ tst-cleanup0 tst-cleanup1 tst-cleanup2 tst-cleanup3 tst-cleanup4 \ tst-flock1 tst-flock2 \ tst-signal1 tst-signal2 tst-signal3 tst-signal4 tst-signal5 \ @@ -326,7 +326,7 @@ ifeq ($(build-static),yes) tests-static += tst-locale1 tst-locale2 endif # These tests are linked with libc before libpthread -tests-reverse += tst-cancel5 +tests-reverse += tst-cancel5 tst-cancel23 include ../Rules |