summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coremutexseize.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-28 06:51:25 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-02 07:46:16 +0200
commitd5cc9fd6f1fd6268c4872e4145fb27fa5a08a16e (patch)
treecba79b0567eeca94046014bdab0073de46eea4e0 /cpukit/score/src/coremutexseize.c
parentscore: Delete __RTEMS_STRICT_ORDER_MUTEX__ (diff)
downloadrtems-d5cc9fd6f1fd6268c4872e4145fb27fa5a08a16e.tar.bz2
score: __RTEMS_DO_NOT_INLINE_CORE_MUTEX_SEIZE__
Delete __RTEMS_DO_NOT_INLINE_CORE_MUTEX_SEIZE__ as a preparation to restructure the CORE mutex variants and reduce the branch complexity.
Diffstat (limited to 'cpukit/score/src/coremutexseize.c')
-rw-r--r--cpukit/score/src/coremutexseize.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/cpukit/score/src/coremutexseize.c b/cpukit/score/src/coremutexseize.c
index d76c977aba..168d69716f 100644
--- a/cpukit/score/src/coremutexseize.c
+++ b/cpukit/score/src/coremutexseize.c
@@ -24,25 +24,6 @@
#include <rtems/score/statesimpl.h>
#include <rtems/score/thread.h>
-#if defined(__RTEMS_DO_NOT_INLINE_CORE_MUTEX_SEIZE__)
-void _CORE_mutex_Seize(
- CORE_mutex_Control *_the_mutex,
- Thread_Control *_executing,
- bool _wait,
- Watchdog_Interval _timeout,
- ISR_Level _level
-)
-{
- _CORE_mutex_Seize_body(
- _the_mutex,
- _executing,
- _wait,
- _timeout,
- _level
- );
-}
-#endif
-
void _CORE_mutex_Seize_interrupt_blocking(
CORE_mutex_Control *the_mutex,
Thread_Control *executing,