summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/canceleval.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/canceleval.c')
-rw-r--r--cpukit/posix/src/canceleval.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/cpukit/posix/src/canceleval.c b/cpukit/posix/src/canceleval.c
new file mode 100644
index 0000000000..f2e6d9c4c8
--- /dev/null
+++ b/cpukit/posix/src/canceleval.c
@@ -0,0 +1,38 @@
+/*
+ * COPYRIGHT (c) 1989-2009.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <pthread.h>
+#include <rtems/system.h>
+#include <rtems/score/thread.h>
+#include <rtems/posix/cancel.h>
+#include <rtems/posix/pthread.h>
+
+void _POSIX_Thread_Evaluate_cancellation_and_enable_dispatch(
+ Thread_Control *the_thread
+)
+{
+ POSIX_API_Control *thread_support;
+
+ thread_support = the_thread->API_Extensions[ THREAD_API_POSIX ];
+
+ if ( thread_support->cancelability_state == PTHREAD_CANCEL_ENABLE &&
+ thread_support->cancelability_type == PTHREAD_CANCEL_ASYNCHRONOUS &&
+ thread_support->cancelation_requested ) {
+ _Thread_Unnest_dispatch();
+ _POSIX_Thread_Exit( the_thread, PTHREAD_CANCELED );
+ } else
+ _Thread_Enable_dispatch();
+
+}