summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrpj <rpj>2005-03-16 05:17:22 +0000
committerrpj <rpj>2005-03-16 05:17:22 +0000
commite2e9fa5538bc4f00dec031cb98f832159e2bb33c (patch)
tree0c595d6e33511957c013b5bee56f3980caee290d
parent5f30460d31b6d01c6020e6819c900d9c9309361f (diff)
''
-rw-r--r--ChangeLog4
-rw-r--r--NEWS8
-rw-r--r--pthread_setcancelstate.c2
3 files changed, 8 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index cba504f..f07632b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2005-03-16 Ross Johnson <ross at callisto.canberra.edu.au>^M
+ * pthread_setcancelstate.c: Undo the last change.
+
+2005-03-16 Ross Johnson <ross at callisto.canberra.edu.au>^M
+
* pthread_setcancelstate.c: Don't check for an async cancel event
if the library is using alertable async cancel..
diff --git a/NEWS b/NEWS
index 82d168c..9bef3c2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,7 @@
-RELEASE 2.0.0^M
--------------^M
+RELEASE 2.0.0
+-------------
(2005-03-16)
-^M
+
General
-------
@@ -25,7 +25,7 @@ cancel. See the README file (Prerequisites section) for info
on adding alertable async cancelation.
New features
-------------^M
+------------
* pthread_once() now supports init_routine cancellability.
diff --git a/pthread_setcancelstate.c b/pthread_setcancelstate.c
index 12fdda4..002cfe5 100644
--- a/pthread_setcancelstate.c
+++ b/pthread_setcancelstate.c
@@ -103,10 +103,8 @@ pthread_setcancelstate (int state, int *oldstate)
/*
* Check if there is a pending asynchronous cancel
- * only if we don't have alertable async cancel.
*/
if (state == PTHREAD_CANCEL_ENABLE
- && (ptw32_features & PTW32_ALERTABLE_ASYNC_CANCEL) == 0
&& sp->cancelType == PTHREAD_CANCEL_ASYNCHRONOUS
&& WaitForSingleObject (sp->cancelEvent, 0) == WAIT_OBJECT_0)
{