summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/barrierdata.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-08 10:12:21 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-12 13:25:39 +0100
commit395a49e199882f0461233465a5db56ab06d0cb28 (patch)
tree838e602ad28e12acfe8b6729e1753edace1d82ee /cpukit/include/rtems/rtems/barrierdata.h
parentrtems: Remove Modes_Control (diff)
downloadrtems-395a49e199882f0461233465a5db56ab06d0cb28.tar.bz2
rtems: Move internal structures to barrierdata.h
Update #3598.
Diffstat (limited to 'cpukit/include/rtems/rtems/barrierdata.h')
-rw-r--r--cpukit/include/rtems/rtems/barrierdata.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/cpukit/include/rtems/rtems/barrierdata.h b/cpukit/include/rtems/rtems/barrierdata.h
new file mode 100644
index 0000000000..a19ed88758
--- /dev/null
+++ b/cpukit/include/rtems/rtems/barrierdata.h
@@ -0,0 +1,54 @@
+/**
+ * @file
+ *
+ * @ingroup ClassicBarrierImpl
+ *
+ * @brief Classic Barrier Manager 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_RTEMS_BARRIERDATA_H
+#define _RTEMS_RTEMS_BARRIERDATA_H
+
+#include <rtems/rtems/barrier.h>
+#include <rtems/score/object.h>
+#include <rtems/score/corebarrier.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * @addtogroup XXX
+ *
+ * @{
+ */
+
+/**
+ * This type defines the control block used to manage each barrier.
+ */
+typedef struct {
+ /** This is used to manage a barrier as an object. */
+ Objects_Control Object;
+ /** This is used to implement the barrier. */
+ CORE_barrier_Control Barrier;
+ /** This is used to specify the attributes of a barrier. */
+ rtems_attribute attribute_set;
+} Barrier_Control;
+
+/** @} */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+/* end of include file */