summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/headers/cancel.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/exec/posix/headers/cancel.h')
-rw-r--r--c/src/exec/posix/headers/cancel.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/c/src/exec/posix/headers/cancel.h b/c/src/exec/posix/headers/cancel.h
new file mode 100644
index 0000000000..de059d317d
--- /dev/null
+++ b/c/src/exec/posix/headers/cancel.h
@@ -0,0 +1,15 @@
+/* rtems/posix/cancel.h
+ *
+ */
+
+#ifndef __RTEMS_POSIX_CANCEL_h
+#define __RTEMS_POSIX_CANCEL_h
+
+typedef struct {
+ Chain_Node Node;
+ void (*routine)( void * );
+ void *arg;
+} POSIX_Cancel_Handler_control;
+
+#endif
+/* end of include file */