Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/thread.cc')
-rw-r--r--winsup/cygwin/thread.cc36
1 files changed, 10 insertions, 26 deletions
diff --git a/winsup/cygwin/thread.cc b/winsup/cygwin/thread.cc
index ff8459015..8f299008b 100644
--- a/winsup/cygwin/thread.cc
+++ b/winsup/cygwin/thread.cc
@@ -966,43 +966,27 @@ pthread::static_cancel_self ()
int
pthread::setcancelstate (int state, int *oldstate)
{
- int result = 0;
-
- mutex.lock ();
-
if (state != PTHREAD_CANCEL_ENABLE && state != PTHREAD_CANCEL_DISABLE)
- result = EINVAL;
- else
- {
- if (oldstate)
- *oldstate = cancelstate;
- cancelstate = state;
- }
+ return EINVAL;
- mutex.unlock ();
+ if (oldstate)
+ *oldstate = cancelstate;
+ cancelstate = state;
- return result;
+ return 0;
}
int
pthread::setcanceltype (int type, int *oldtype)
{
- int result = 0;
-
- mutex.lock ();
-
if (type != PTHREAD_CANCEL_DEFERRED && type != PTHREAD_CANCEL_ASYNCHRONOUS)
- result = EINVAL;
- else
- {
- if (oldtype)
- *oldtype = canceltype;
- canceltype = type;
- }
+ return EINVAL;
- mutex.unlock ();
+ if (oldtype)
+ *oldtype = canceltype;
+ canceltype = type;
- return result;
+ return 0;
}
void