diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-14 18:33:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-14 18:33:54 +0000 |
commit | e320ef46a7283517aeba1decc20ffb38ed131281 (patch) | |
tree | be9af48c1823694fde8d21ef1de61918b8205126 /nptl/Makefile | |
parent | 700bf7af9f98174f33ac177332bcbcd644055474 (diff) | |
download | glibc-e320ef46a7283517aeba1decc20ffb38ed131281.tar.gz glibc-e320ef46a7283517aeba1decc20ffb38ed131281.tar.xz glibc-e320ef46a7283517aeba1decc20ffb38ed131281.zip |
Update.
* descr.h: Define CANCELING_BIT and CANCELING_BITMASK. Introduce after CANCELTYPE_BIT, move the other bits up. Update CANCEL_RESTMASK. * init.c (sigcancel_handler): Also set CANCELING_BITMASK bit in newval. * pthread_cancel.c (pthread_cancel): Likewise. Also set CANCELING_BIT if asynchronous canceling is enabled. * pthread_join.c (pthread_join): When recognizing circular joins, take into account the other thread might be already canceled. * Makefile (tests): Add tst-join5. * tst-join5.c: New file.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index fbd78791ec..65c90c2182 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -137,7 +137,7 @@ tests = tst-attr1 tst-attr2 \ tst-sem1 tst-sem2 tst-sem3 tst-sem4 tst-sem5 \ tst-barrier1 tst-barrier2 tst-barrier3 \ tst-basic1 tst-basic2 \ - tst-join1 tst-join2 tst-join3 tst-join4 \ + tst-join1 tst-join2 tst-join3 tst-join4 tst-join5 \ tst-tsd1 tst-tsd2 \ tst-fork1 tst-fork2 tst-fork3 \ tst-atfork1 \ |