summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline/rtems
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-19 11:00:19 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-22 16:57:21 +0200
commitbb2d9f9b36fc6b5ef0bf175c3da3928a482fd58b (patch)
treec26bf87ac41e487bb586d273a8a1dec0610a997f /cpukit/score/inline/rtems
parentposix: Create barrier implementation header (diff)
downloadrtems-bb2d9f9b36fc6b5ef0bf175c3da3928a482fd58b.tar.bz2
score: Create barrier implementation header
Move implementation specific parts of corebarrier.h and corebarrier.inl into new header file corebarrierimpl.h. The corebarrier.h contains now only the application visible API.
Diffstat (limited to 'cpukit/score/inline/rtems')
-rw-r--r--cpukit/score/inline/rtems/score/corebarrier.inl67
1 files changed, 0 insertions, 67 deletions
diff --git a/cpukit/score/inline/rtems/score/corebarrier.inl b/cpukit/score/inline/rtems/score/corebarrier.inl
deleted file mode 100644
index 72ad670a70..0000000000
--- a/cpukit/score/inline/rtems/score/corebarrier.inl
+++ /dev/null
@@ -1,67 +0,0 @@
-/**
- * @file
- *
- * @brief Inlined Routines Associated with the SuperCore Barrier
- *
- * This include file contains all of the inlined routines associated
- * with the SuperCore barrier.
- */
-
-/*
- * COPYRIGHT (c) 1989-2006.
- * 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.com/license/LICENSE.
- */
-
-#ifndef _RTEMS_SCORE_COREBARRIER_H
-# error "Never use <rtems/score/corebarrier.inl> directly; include <rtems/score/corebarrier.h> instead."
-#endif
-
-#ifndef _RTEMS_SCORE_COREBARRIER_INL
-#define _RTEMS_SCORE_COREBARRIER_INL
-
-/**
- * @addtogroup ScoreBarrier
- */
-/**@{**/
-
-#include <rtems/score/thread.h>
-#include <rtems/score/threadq.h>
-
-/**
- * This function returns true if the automatic release attribute is
- * enabled in the @a attribute_set and false otherwise.
- *
- * @param[in] the_attribute is the attribute set to test
- *
- * @return true if the priority attribute is enabled
- */
-RTEMS_INLINE_ROUTINE bool _CORE_barrier_Is_automatic(
- CORE_barrier_Attributes *the_attribute
-)
-{
- return
- (the_attribute->discipline == CORE_BARRIER_AUTOMATIC_RELEASE);
-}
-
-/**
- * This routine returns the number of threads currently waiting at the barrier.
- *
- * @param[in] the_barrier is the barrier to obtain the number of blocked
- * threads for
- * @return the current count of this barrier
- */
-RTEMS_INLINE_ROUTINE uint32_t _CORE_barrier_Get_number_of_waiting_threads(
- CORE_barrier_Control *the_barrier
-)
-{
- return the_barrier->number_of_waiting_threads;
-}
-
-/** @} */
-
-#endif
-/* end of include file */