📄 subsystem.c
字号:
/* *---------------------------------------------------------------------- * 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. * *---------------------------------------------------------------------- *//* * subsystem.c (extension) * Subsystem start/stop */#include "sysinit.h"/* * Subsystem initialization * The initialization sequence is called before kernel startup. * Normally there is no need for any processing. */EXPORT ER init_subsystems( void ){ ER err = E_OK; /* Describe subsystem initialization sequence */ return err;}/* * Subsystem start * Called from initial task context after kernel startup. * Drivers and subsystems used by the extensions are * started at this point. */EXPORT ER start_subsystems( void ){ ER err = E_OK; /* Describe subsystem startup sequence */ return err;}/* * End subsystems */EXPORT ER finish_subsystems( void ){ ER err = E_OK; /* Describe subsystem end sequence */ return err;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -