From 722a516400bd9a03211f28a90b2dd42b7dce5d0e Mon Sep 17 00:00:00 2001 From: davidxu Date: Fri, 24 Sep 2010 07:52:07 +0000 Subject: In most cases, cancel_point and cancel_async needn't be checked again, because cancellation is almostly checked at cancellation points. --- lib/libthr/thread/thr_private.h | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/libthr/thread/thr_private.h') diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h index 8b545e5..a42b4ec 100644 --- a/lib/libthr/thread/thr_private.h +++ b/lib/libthr/thread/thr_private.h @@ -357,7 +357,6 @@ struct pthread { #define SHOULD_CANCEL(thr) \ ((thr)->cancel_pending && (thr)->cancel_enable && \ - ((thr)->cancel_point || (thr)->cancel_async) && \ (thr)->no_cancel == 0) /* Cancellation is enabled */ -- cgit v1.1