summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/cancel.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-11-24 15:58:26 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-11-24 16:00:14 +0100
commitf6a1ef9fdb9df6beea4251f4440f6db5c6a473b9 (patch)
tree7359a0b2c5a3e8e16da7facaaf46041fc4ef1462 /cpukit/posix/include/rtems/posix/cancel.h
parentbsp/altera-cyclone-v: Add fatal extension handler (diff)
downloadrtems-f6a1ef9fdb9df6beea4251f4440f6db5c6a473b9.tar.bz2
posix: Require struct _pthread_cleanup_context
This structure is available in Newlib since 2013-11-29 (Git commit a534dfd26e765047621acd0eda656ded886e7108).
Diffstat (limited to 'cpukit/posix/include/rtems/posix/cancel.h')
-rw-r--r--cpukit/posix/include/rtems/posix/cancel.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/cpukit/posix/include/rtems/posix/cancel.h b/cpukit/posix/include/rtems/posix/cancel.h
index fd066e9175..9e60c269ce 100644
--- a/cpukit/posix/include/rtems/posix/cancel.h
+++ b/cpukit/posix/include/rtems/posix/cancel.h
@@ -21,20 +21,6 @@
#include <rtems/posix/threadsup.h>
-#ifndef HAVE_STRUCT__PTHREAD_CLEANUP_CONTEXT
-/**
- * This structure is used to manage the cancelation handlers.
- */
-typedef struct {
- /** This field is the Chain Node so we can put these on lists. */
- Chain_Node Node;
- /** This field is the cancelation routine. */
- void (*routine)( void * );
- /** This field is the argument to the cancelation routine. */
- void *arg;
-} POSIX_Cancel_Handler_control;
-#endif /* HAVE_STRUCT__PTHREAD_CLEANUP_CONTEXT */
-
/**
* @brief POSIX run thread cancelation.
*