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

📄 internal.h

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 H
字号:
/*  internal.h * *  This include file contains internal information *  for the RTEMS stack checker. * *  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: internal.h,v 1.10.6.1 2003/09/04 18:47:05 joel Exp $ */#ifndef __INTERNAL_STACK_CHECK_h#define __INTERNAL_STACK_CHECK_h#ifdef __cplusplusextern "C" {#endif/* *  This structure is used to fill in and compare the "end of stack" *  marker pattern. *  pattern area must be a multiple of 4 words. */#ifdef CPU_STACK_CHECK_SIZE#define PATTERN_SIZE_WORDS      (((CPU_STACK_CHECK_SIZE / 4) + 3) & ~0x3)#else#define PATTERN_SIZE_WORDS      (4)#endif#define PATTERN_SIZE_BYTES      (PATTERN_SIZE_WORDS * sizeof(unsigned32))typedef struct {   unsigned32  pattern[ PATTERN_SIZE_WORDS ];} Stack_check_Control;/* *  The pattern used to fill the entire stack. */#define BYTE_PATTERN 0xA5#define U32_PATTERN 0xA5A5A5A5/* *  Stack_check_Create_extension */boolean Stack_check_Create_extension(  Thread_Control *running,  Thread_Control *the_thread);/* *  Stack_check_Begin_extension */void Stack_check_Begin_extension(  Thread_Control *the_thread);/* *  Stack_check_Switch_extension */void Stack_check_Switch_extension(  Thread_Control *running,  Thread_Control *heir);/* *  Stack_check_Fatal_extension */void Stack_check_Fatal_extension(    Internal_errors_Source  source,    boolean                 is_internal,    unsigned32              status);/* *  Stack_check_Dump_usage */void Stack_check_Dump_usage( void );#ifdef __cplusplus}#endif#endif/* end of include file */

⌨️ 快捷键说明

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