📄 configs.h
字号:
/***********************************************************************//* *//* MODULE: configs.h 1.4 *//* DATE: 14:55:50 - 00/07/25 *//* PURPOSE: Configuration table structure templates *//* *//*---------------------------------------------------------------------*//* *//* Copyright 1991 - 1995, Integrated Systems, Inc. *//* ALL RIGHTS RESERVED *//* *//* Permission is hereby granted to licensees of Integrated Systems, *//* Inc. products to use or abstract this computer program for the *//* sole purpose of implementing a product based on Integrated *//* Systems, Inc. products. No other rights to reproduce, use, *//* or disseminate this computer program, whether in part or in *//* whole, are granted. *//* *//* Integrated Systems, Inc. makes no representation or warranties *//* with respect to the performance of this computer program, and *//* specifically disclaims any responsibility for any damages, *//* special or consequential, connected with the use of this program. *//* *//*---------------------------------------------------------------------*//* *//* This file contains includes for templates for all of the *//* component configuration tables. *//* *//***********************************************************************/#if defined(__cplusplus)extern "C" {#endif/*---------------------------------------------------------------------*//* Don't allow this file to be included more than once. *//*---------------------------------------------------------------------*/#ifndef _CONFIGS_H#define _CONFIGS_H#include <psos.h>#include <psoscfg.h>#include <probecfg.h>#include <philecfg.h>#include <prepccfg.h>#include <prpccfg.h>#include <pnacfg.h>#include <psecfg.h>#include <pmontcfg.h>/*---------------------------------------------------------------------*//* Node Configuration Table Structure *//*---------------------------------------------------------------------*/typedef struct NodeConfigTable{ unsigned long cputype; /* CPU type */ MP_CT *mp_ct; /* pointer to Multi-proc config table */ pSOS_CT *psosct; /* pointer to pSOS+ config table */ pROBE_CT *probect; /* pointer to pROBE+ config table */ pHILE_CT *philect; /* pointer to pHILE+ config table */ pREPC_CT *prepct; /* pointer to pREPC+ config table */ unsigned long rsvd1; /* Unused entry */ pNA_CT *pnact; /* pointer to pNA+ config table */ pSE_CT *psect; /* pointer to pSE+ config table */ pMONT_CT *pmct; /* pointer to pMONT+ config table */ unsigned long rsvd2[2]; /* Unused entries */} NODE_CT;extern NODE_CT* anchor;extern void* cp_anchor;#endif /* _CONFIGS_H */#if defined(__cplusplus)}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -