summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/coremutexseizeintr.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/coremutexseizeintr.c')
-rw-r--r--cpukit/score/src/coremutexseizeintr.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/cpukit/score/src/coremutexseizeintr.c b/cpukit/score/src/coremutexseizeintr.c
deleted file mode 100644
index b02c0929b1..0000000000
--- a/cpukit/score/src/coremutexseizeintr.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/**
- * @file
- *
- * @brief Trylock CORE Mutex Seize Interrupt
- * @ingroup ScoreMutex
- */
-
-/*
- * COPYRIGHT (c) 1989-2007.
- * 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.
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems/system.h>
-#include <rtems/score/isr.h>
-#include <rtems/score/coremuteximpl.h>
-#include <rtems/score/thread.h>
-
-#if defined(__RTEMS_DO_NOT_INLINE_CORE_MUTEX_SEIZE__)
-int _CORE_mutex_Seize_interrupt_trylock(
- CORE_mutex_Control *the_mutex,
- Thread_Control *executing,
- ISR_Level level
-)
-{
- return _CORE_mutex_Seize_interrupt_trylock_body(
- the_mutex,
- executing,
- level
- );
-}
-#endif