📄 sptables.h
字号:
/** * @file rtems/sptables.h * * This include file contains the executive's pre-initialized tables * used when in a single processor configuration. */ /* * 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: sptables.h,v 1.7 2005/01/28 05:00:20 ralf Exp $ */#ifndef _RTEMS_SPTABLES_H#define _RTEMS_SPTABLES_H#ifdef __cplusplusextern "C" {#endif#include <rtems/config.h>#include <rtems/debug.h>#include <rtems/fatal.h>#include <rtems/init.h>#include <rtems/io.h>#include <rtems/score/sysstate.h>#include <rtems/rtems/intr.h>#include <rtems/rtems/clock.h>#include <rtems/rtems/tasks.h>#include <rtems/rtems/dpmem.h>#include <rtems/rtems/event.h>#include <rtems/rtems/message.h>#if defined(RTEMS_MULTIPROCESSING)#include <rtems/rtems/mp.h>#endif#include <rtems/rtems/part.h>#include <rtems/rtems/ratemon.h>#include <rtems/rtems/region.h>#include <rtems/rtems/sem.h>#include <rtems/rtems/signal.h>#include <rtems/rtems/timer.h>/* * This is the default Multiprocessing Configuration Table. * It is used in single processor configurations. */#if defined(SAPI_INIT)const rtems_multiprocessing_table _Initialization_Default_multiprocessing_table = { 1, /* local node number */ 1, /* maximum number nodes in system */ 0, /* maximum number global objects */ 0, /* maximum number proxies */ NULL, /* pointer to MPCI address table */};#elseextern const rtems_multiprocessing_table _Initialization_Default_multiprocessing_table;#endif#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -