📄 ss_timer.x
字号:
/********************************************************************20**
Name: System Services -- Timing
Type: C include file
Desc: Data structure definitions required for timing.
File: ss_timer.x
Sid: ss_timer.x 1.2 - 08/11/98 10:47:36
Prg: kp
*********************************************************************21*/
#ifndef __SSTIMERX__
#define __SSTIMERX__
#ifdef __cplusplus
extern "C" {
#endif
/* timer ID and type */
typedef SsIdx SsTmrId;
/* individual entry in the timer table */
typedef struct ssTmrEntry
{
SsdTmrEntry dep; /* implementation specific */
Bool used; /* entry is used? */
SsTmrId tmrId; /* timer ID */
Ent ownerEnt; /* owner task entity ID */
Inst ownerInst; /* owner task instance ID */
U16 interval; /* timer interval */
PFS16 tmrActvFn; /* timer activation function */
Buffer *mBuf; /* timer message buffer */
SsIdx nxt; /* table implementation */
} SsTmrEntry;
#ifdef __cplusplus
}
#endif
#endif /* __SSTIMERX__ */
/********************************************************************30**
End of file: ss_timer.x 1.2 - 08/11/98 10:47:36
*********************************************************************31*/
/********************************************************************40**
Notes:
*********************************************************************41*/
/********************************************************************50**
*********************************************************************51*/
/********************************************************************60**
Revision history:
*********************************************************************61*/
/********************************************************************90**
ver pat init description
------------ -------- ---- ----------------------------------------------
1.1 --- kp 1. initial release
1.2 --- kp 1. C++ compilable, cosmetic changes
*********************************************************************91*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -