summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-12-14 11:47:47 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-03 10:00:54 +0100
commitcef56750eb5ce8a2aa31ff4e3bc038bc656a0d96 (patch)
tree7623daadd38c0aa9bd84dd314f1b4e2113f8a247 /cpukit/posix/include/rtems
parentOptional POSIX Threads initialization (diff)
downloadrtems-cef56750eb5ce8a2aa31ff4e3bc038bc656a0d96.tar.bz2
Optional POSIX Cleanup initialization
Update #2408.
Diffstat (limited to 'cpukit/posix/include/rtems')
-rw-r--r--cpukit/posix/include/rtems/posix/cancel.h13
-rw-r--r--cpukit/posix/include/rtems/posix/threadsup.h4
2 files changed, 0 insertions, 17 deletions
diff --git a/cpukit/posix/include/rtems/posix/cancel.h b/cpukit/posix/include/rtems/posix/cancel.h
index 9e60c269ce..52bbcbccec 100644
--- a/cpukit/posix/include/rtems/posix/cancel.h
+++ b/cpukit/posix/include/rtems/posix/cancel.h
@@ -22,19 +22,6 @@
#include <rtems/posix/threadsup.h>
/**
- * @brief POSIX run thread cancelation.
- *
- * This support routine runs through the chain of cancel handlers that
- * have been registered and executes them.
- *
- * @param[in] the_thread is a pointer to the thread whose cancelation handlers
- * should be run
- */
-void _POSIX_Threads_cancel_run(
- Thread_Control *the_thread
-);
-
-/**
* @brief POSIX evaluate thread cancelation and enable dispatch.
*
* This routine separates a piece of code that existed as part of
diff --git a/cpukit/posix/include/rtems/posix/threadsup.h b/cpukit/posix/include/rtems/posix/threadsup.h
index bf80c6314a..55db35ddbd 100644
--- a/cpukit/posix/include/rtems/posix/threadsup.h
+++ b/cpukit/posix/include/rtems/posix/threadsup.h
@@ -85,10 +85,6 @@ typedef struct {
int cancelability_type;
/** This indicates if a cancelation has been requested. */
int cancelation_requested;
- /**
- * @brief LIFO list of cleanup contexts.
- */
- struct _pthread_cleanup_context *last_cleanup_context;
} POSIX_API_Control;
/**