⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 options.inl

📁 开放源码的嵌入式开发环境
💻 INL
字号:
/** * @file rtems/rtems/options.inl *//* *  This file contains the static inline implementation of the inlined *  routines from the Options Handler. * *  COPYRIGHT (c) 1989-1999. *  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. * *  $Id: options.inl,v 1.11 2005/02/21 07:39:58 ralf Exp $ */#ifndef _RTEMS_RTEMS_OPTIONS_INL#define _RTEMS_RTEMS_OPTIONS_INL/*PAGE * *  _Options_Is_no_wait * *  DESCRIPTION: * *  This function returns TRUE if the RTEMS_NO_WAIT option is enabled in *  option_set, and FALSE otherwise. */RTEMS_INLINE_ROUTINE boolean _Options_Is_no_wait (  rtems_option option_set){   return (option_set & RTEMS_NO_WAIT);}/*PAGE * *  _Options_Is_any * *  DESCRIPTION: * *  This function returns TRUE if the RTEMS_EVENT_ANY option is enabled in *  OPTION_SET, and FALSE otherwise. */RTEMS_INLINE_ROUTINE boolean _Options_Is_any (  rtems_option option_set){   return (option_set & RTEMS_EVENT_ANY);}#endif/* end of include file */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -