init.c
来自「RTEMS (Real-Time Executive for Multiproc」· C语言 代码 · 共 44 行
C
44 行
/* * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994. * On-Line Applications Research Corporation (OAR). * * $Id: init.c,v 1.8.2.2 2003/09/04 13:53:43 joel Exp $ */#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__#include <bsp.h>#include <stdlib.h>void *POSIX_Init( void *argument){ extern int gnat_main ( int argc, char **argv, char **envp ); (void) gnat_main ( 0, 0, 0 ); exit( 0 );}/* * Only for sp04 */rtems_id tcb_to_id( Thread_Control *tcb){ return tcb->Object.id;}/* * By putting this in brackets rather than quotes, we get the search * path and can get this file from ".." in the mptests. */#define CONFIGURE_INIT#define CONFIGURE_GNAT_RTEMS#define CONFIGURE_MEMORY_OVERHEAD (256)#include <config.h>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?