summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/inline/rtems/rtems/status.inl
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-23 10:54:37 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-07-23 15:12:52 +0200
commitfaa2f8c4e9145c629ad7670d0869c1caed33abc2 (patch)
tree27afeca6b33e3149b4c305e03e81a6a8746953d4 /cpukit/rtems/inline/rtems/rtems/status.inl
parentscore: Create rbtree implementation header (diff)
downloadrtems-faa2f8c4e9145c629ad7670d0869c1caed33abc2.tar.bz2
rtems: Create status implementation header
Move implementation specific parts of status.h and status.inl into new header file statusimpl.h. The status.h contains now only the application visible API.
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/inline/rtems/rtems/status.inl60
1 files changed, 0 insertions, 60 deletions
diff --git a/cpukit/rtems/inline/rtems/rtems/status.inl b/cpukit/rtems/inline/rtems/rtems/status.inl
deleted file mode 100644
index caeb03da88..0000000000
--- a/cpukit/rtems/inline/rtems/rtems/status.inl
+++ /dev/null
@@ -1,60 +0,0 @@
-/**
- * @file rtems/rtems/status.inl
- *
- * This include file contains the implementations of the inlined
- * routines for the status package.
- */
-
-/* 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.com/license/LICENSE.
- */
-
-#ifndef _RTEMS_RTEMS_STATUS_H
-# error "Never use <rtems/rtems/status.inl> directly; include <rtems/rtems/status.h> instead."
-#endif
-
-#ifndef _RTEMS_RTEMS_STATUS_INL
-#define _RTEMS_RTEMS_STATUS_INL
-
-#include <rtems/score/basedefs.h>
-
-/**
- * @addtogroup ClassicStatus
- * @{
- */
-
-/**
- * @brief Checks if the status code is equal to RTEMS_SUCCESSFUL.
- *
- * This function returns TRUE if the status code is equal to RTEMS_SUCCESSFUL,
- * and FALSE otherwise.
- */
-RTEMS_INLINE_ROUTINE bool rtems_is_status_successful(
- rtems_status_code code
-)
-{
- return (code == RTEMS_SUCCESSFUL);
-}
-
-/**
- * @brief Checks if the status code1 is equal to code2.
- *
- * This function returns TRUE if the status code1 is equal to code2,
- * and FALSE otherwise.
- */
-RTEMS_INLINE_ROUTINE bool rtems_are_statuses_equal(
- rtems_status_code code1,
- rtems_status_code code2
-)
-{
- return (code1 == code2);
-}
-
-/**@}*/
-
-#endif
-/* end of include file */