initcomp.c

来自「VRTX 商用嵌入式实时操作系统」· C语言 代码 · 共 52 行

C
52
字号
/***************************************************************************
*
*		Copyright (c) 1992 MICROTEC RESEARCH INCORPORATED.
*
*	All rights reserved. MICROTEC RESEARCH's source code is an unpublished
*	work and the use of a copyright notice does not imply otherwise.
*	This source code contains confidential, trade secret material of
*	MICROTEC RESEARCH. Any attempt or participation in deciphering, decoding,
*	reverse engineering or in any way altering the source code is
*	strictly prohibited, unless the prior written consent of
*	MICROTEC RESEARCH is obtained.
*
*
*	Module Name:		%M%
*
*	Identification:		%Z% %I% %M%
*
*	Date:			%G%  %U%
*
****************************************************************************
*/

#include <ansiprot.h>








const int rtl_heap_size = 0x80000;
extern void sc_call();
void (* const sys_sc_call_dummy)() = (void (*)())sc_call;



void (* const sys_mpv_poll_ptr)() = (void (*)())0;

extern void sys_rtl_tcreate_hook();
extern void sys_rtl_tdelete_hook();
extern void sys_rtl_tswitch_hook();

void (* const sys_rtl_hooks_tab[3])() = {
 	sys_rtl_tcreate_hook,
        sys_rtl_tdelete_hook,
        sys_rtl_tswitch_hook
};



⌨️ 快捷键说明

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