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

📄 stack.inl

📁 开放源码的嵌入式开发环境
💻 INL
字号:
/**  *  @file  rtems/score/stack.inl * *  This file contains the static inline implementation of the inlined *  routines from the Stack Handler. *//* *  COPYRIGHT (c) 1989-2006. *  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: stack.inl,v 1.16 2006/01/16 15:13:58 joel Exp $ */#ifndef _RTEMS_SCORE_STACK_INL#define _RTEMS_SCORE_STACK_INL/** *  @addtogroup ScoreStack  *  @{ *//** *  This routine initializes the_stack record to indicate that *  size bytes of memory starting at starting_address have been *  reserved for a stack. */RTEMS_INLINE_ROUTINE void _Stack_Initialize (  Stack_Control *the_stack,  void          *starting_address,  uint32_t       size){  the_stack->area = starting_address;  the_stack->size = size;}/** *  This function returns TRUE if size bytes is enough memory for *  a valid stack area on this processor, and FALSE otherwise. */RTEMS_INLINE_ROUTINE boolean _Stack_Is_enough (  uint32_t   size){  return ( size >= STACK_MINIMUM_SIZE );}/** *  This function increases the stack size to ensure that the thread *  has the desired amount of stack space after the initial stack *  pointer is determined based on alignment restrictions. * *  @note * *  The amount of adjustment for alignment is CPU dependent. */RTEMS_INLINE_ROUTINE uint32_t   _Stack_Adjust_size (  uint32_t   size){  return size + CPU_STACK_ALIGNMENT;}/**@}*/#endif/* end of include file */

⌨️ 快捷键说明

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