sysexc_depend.h

来自「嵌入式操作系统T-Kernel 完整代码」· C头文件 代码 · 共 44 行

H
44
字号
/* *---------------------------------------------------------------------- *    T-Kernel * *    Copyright (C) 2004 by Ken Sakamura. All rights reserved. *    T-Kernel is distributed under the T-License. *---------------------------------------------------------------------- * *    Version:   1.01.00 *    Released by T-Engine Forum(http://www.t-engine.org) at 2004/6/28. * *---------------------------------------------------------------------- *//* *	@(#)sysexc_depend.h (sys/MB87Q1100) * *	System exception processing */#ifndef __SYS_SYSEXC_DEPEND_H__#define __SYS_SYSEXC_DEPEND_H__#ifdef __cplusplusextern "C" {#endif/* System exception message */typedef struct {	W	type;		/* Message type (MS_SYS1) */	W	size;		/* Message size */	ID	taskid;		/* Exception generated task ID */	ID	procid;		/* Exception generated process ID */	UW	vecno;		/* Exception vector number */	UW	excinfo;	/* Exception information (FSR) */	UW	excaddr;	/* Exception address (FAR) */} EXCMESG;#ifdef __cplusplus}#endif#endif /* __SYS_SYSEXC_DEPEND_H__ */

⌨️ 快捷键说明

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