📄 os_glob.h
字号:
/*
+------------------------------------------------------------------------------
| File: os_glob.h
+------------------------------------------------------------------------------
| Copyright 2002 Texas Instruments Berlin, AG
| All rights reserved.
|
| This file is confidential and a trade secret of Texas
| Instruments Berlin, AG
| The receipt of or possession of this file does not convey
| any rights to reproduce or disclose its contents or to
| manufacture, use, or sell anything it may describe, in
| whole, or in part, without the specific written consent of
| Texas Instruments Berlin, AG.
+-----------------------------------------------------------------------------
| Purpose : Global tabless for the Nucleus OS adaptation layer
+-----------------------------------------------------------------------------
*/
#ifndef OS_GLOB_H
#define OS_GLOB_H
/*==== INCLUDES =============================================================*/
#include "os_types.h"
/*==== CONSTANTS ============================================================*/
/*==== TYPES ================================================================*/
/*==== VARIABLES ============================================================*/
#ifndef CONFIG_MODULE
extern USHORT MaxTasks;
extern USHORT MaxCommunications;
extern USHORT MaxSimultaneousTimer;
extern USHORT MaxTimer;
extern USHORT MaxSemaphores;
#else
#ifndef DATA_INT_RAM
GLOBAL T_OS_TASK_TABLE_ENTRY TaskTable [ MAX_OS_TASKS + 1 ];
GLOBAL T_OS_COM_TABLE_ENTRY ComTable [ MAX_COMMUNICATIONS + 1 ];
GLOBAL T_OS_TIMER_ENTRY TimerTable [ MAX_SIMULTANEOUS_TIMER + 1 ];
GLOBAL T_OS_SEM_TABLE_ENTRY SemTable [ MAX_SEMAPHORES + 1 ];
GLOBAL T_OS_PCB_TABLE_ENTRY Test_PCBTable [ NUM_OF_TEST_POOLS ];
GLOBAL T_OS_PCB_TABLE_ENTRY Dmem_PCBTable [ NUM_OF_DMEM_POOLS ];
GLOBAL T_OS_PCB_TABLE_ENTRY Prim_PCBTable [ NUM_OF_PRIM_POOLS ];
GLOBAL T_OS_TIMER_ENTRY *p_list [ MAX_SIMULTANEOUS_TIMER + 1 ];
GLOBAL const char *os_dar_filename = "/var/dbg/dar";
GLOBAL ULONG os_dar_write_buffer_size = 3000;
#endif /* DATA_INT_RAM */
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -