source: rtems/c/src/lib/libbsp/shared/main.c @ 2fc3592d

Last change on this file since 2fc3592d was 6128a4a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/21/04 at 10:43:04

Remove stray white spaces.

  • Property mode set to 100644
File size: 817 bytes
Line 
1/*
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.rtems.com/license/LICENSE.
15 *
16 *  $Id$
17 */
18
19#include <bsp.h>
20
21char *rtems_progname;
22
23extern rtems_interrupt_level bsp_isr_level;
24
25int 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}
Note: See TracBrowser for help on using the repository browser.