From: Rich Felker Date: Sun, 22 Feb 2015 03:05:15 +0000 (-0500) Subject: add new masked cancellation mode X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=102f6a01e249ce4495f1119ae6d963a2a4a53ce5;hp=102f6a01e249ce4495f1119ae6d963a2a4a53ce5;p=musl add new masked cancellation mode this is a new extension which is presently intended only for experimental and internal libc use. interface and behavior details may change subject to feedback and experience from using it internally. the basic concept for the new PTHREAD_CANCEL_MASKED state is that the first cancellation point to observe the cancellation request fails with an errno value of ECANCELED rather than acting on cancellation, allowing the caller to process the status and choose whether/how to act upon it. ---