From faa2f8c4e9145c629ad7670d0869c1caed33abc2 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 23 Jul 2013 10:54:37 +0200 Subject: 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. --- cpukit/rtems/inline/rtems/rtems/status.inl | 60 ------------------------------ 1 file changed, 60 deletions(-) delete mode 100644 cpukit/rtems/inline/rtems/rtems/status.inl (limited to 'cpukit/rtems/inline/rtems/rtems/status.inl') 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 directly; include instead." -#endif - -#ifndef _RTEMS_RTEMS_STATUS_INL -#define _RTEMS_RTEMS_STATUS_INL - -#include - -/** - * @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 */ -- cgit v1.2.3