OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [shared/] [main.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  A simple main which can be used on any embedded target.
3
 *
4
 *  This style of initialization insures that the C++ global
5
 *  constructors are executed after RTEMS is initialized.
6
 *
7
 *  Thanks to Chris Johns <cjohns@plessey.com.au> for this idea.
8
 *
9
 *  COPYRIGHT (c) 1989-1999.
10
 *  On-Line Applications Research Corporation (OAR).
11
 *
12
 *  The license and distribution terms for this file may be
13
 *  found in the file LICENSE in this distribution or at
14
 *  http://www.OARcorp.com/rtems/license.html.
15
 *
16
 *  main.c,v 1.11 2001/09/28 23:14:58 joel Exp
17
 */
18
 
19
#include <bsp.h>
20
 
21
char *rtems_progname;
22
 
23
extern rtems_interrupt_level bsp_isr_level;
24
 
25
int c_rtems_main(int argc, char **argv)
26
{
27
  if ((argc > 0) && argv && argv[0])
28
    rtems_progname = argv[0];
29
  else
30
    rtems_progname = "RTEMS";
31
 
32
  rtems_initialize_executive_late( bsp_isr_level );
33
 
34
  return 0;
35
}
36
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.