summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/extensiondata.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-08 13:17:37 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-12 13:25:40 +0100
commit5fc855d96059236268e9b3a93fd79f2e91a4a8e4 (patch)
treea7950dcf6dabeb2ac6f115a2a7665b515cef7775 /cpukit/include/rtems/extensiondata.h
parentrtems: Move internal structures to timerdata.h (diff)
downloadrtems-5fc855d96059236268e9b3a93fd79f2e91a4a8e4.tar.bz2
rtems: Move internal structures to extensiondata.h
Update #3598.
Diffstat (limited to 'cpukit/include/rtems/extensiondata.h')
-rw-r--r--cpukit/include/rtems/extensiondata.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/cpukit/include/rtems/extensiondata.h b/cpukit/include/rtems/extensiondata.h
new file mode 100644
index 0000000000..ba32a2b319
--- /dev/null
+++ b/cpukit/include/rtems/extensiondata.h
@@ -0,0 +1,46 @@
+/**
+ * @file
+ *
+ * @ingroup ClassicUserExtensionsImpl
+ *
+ * @brief Classic User Extensions Data Structures
+ */
+
+/*
+ * 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.
+ */
+
+#ifndef _RTEMS_EXTENSIONDATA_H
+#define _RTEMS_EXTENSIONDATA_H
+
+#include <rtems/extension.h>
+#include <rtems/score/object.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @addtogroup ClassicUserExtensionsImpl
+ *
+ * @{
+ */
+
+typedef struct {
+ Objects_Control Object;
+ User_extensions_Control Extension;
+} Extension_Control;
+
+/** @} */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+/* end of include file */