📄 misc_calls.h
字号:
/* *---------------------------------------------------------------------- * micro T-Kernel * * Copyright (C) 2006-2007 by Ken Sakamura. All rights reserved. * micro T-Kernel is distributed under the micro T-License. *---------------------------------------------------------------------- * * Version: 1.00.00 * Released by T-Engine Forum(http://www.t-engine.org) at 2007/03/26. * *---------------------------------------------------------------------- *//* * misc_calls.h * Other System Calls */#ifndef _MISC_CALLS_H_#define _MISC_CALLS_H_IMPORT UINT knl_lowpow_discnt;/* * Hook routine address */IMPORT FP knl_hook_enterfn;IMPORT FP knl_hook_leavefn;IMPORT FP knl_hook_execfn;IMPORT FP knl_hook_stopfn;IMPORT FP knl_hook_ienterfn;IMPORT FP knl_hook_ileavefn;#if TA_GPIMPORT VP knl_hook_svc_gp;IMPORT VP knl_hook_dsp_gp;IMPORT VP knl_hook_int_gp;#endif/* * Hook enable/disable setting */IMPORT void knl_hook_svc( void );IMPORT void knl_unhook_svc( void );IMPORT void knl_hook_dsp( void );IMPORT void knl_unhook_dsp( void );IMPORT void knl_hook_int( void );IMPORT void knl_unhook_int( void );#endif /* _MISC_CALLS_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -