From cef56750eb5ce8a2aa31ff4e3bc038bc656a0d96 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 14 Dec 2015 11:47:47 +0100 Subject: Optional POSIX Cleanup initialization Update #2408. --- cpukit/posix/src/cancelrun.c | 50 -------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 cpukit/posix/src/cancelrun.c (limited to 'cpukit/posix/src/cancelrun.c') diff --git a/cpukit/posix/src/cancelrun.c b/cpukit/posix/src/cancelrun.c deleted file mode 100644 index 3e93b3dd57..0000000000 --- a/cpukit/posix/src/cancelrun.c +++ /dev/null @@ -1,50 +0,0 @@ -/** - * @file - * - * @brief Executes a thread's cancellation handlers - * @ingroup POSIXAPI - */ - -/* - * COPYRIGHT (c) 1989-2008. - * 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.org/license/LICENSE. - */ - -#if HAVE_CONFIG_H -#include "config.h" -#endif - -#include - -#include -#include -#include -#include - -void _POSIX_Threads_cancel_run( - Thread_Control *the_thread -) -{ - struct _pthread_cleanup_context *context; - POSIX_API_Control *thread_support; - - _Thread_Disable_dispatch(); - - thread_support = the_thread->API_Extensions[ THREAD_API_POSIX ]; - thread_support->cancelability_state = PTHREAD_CANCEL_DISABLE; - - context = thread_support->last_cleanup_context; - thread_support->last_cleanup_context = NULL; - - _Thread_Enable_dispatch(); - - while ( context != NULL ) { - ( *context->_routine )( context->_arg ); - - context = context->_previous; - } -} -- cgit v1.2.3