source: ada-examples/gen-soconn/init.c @ e636489

ada-examples-4-10-branchada-examples-4-9-branch
Last change on this file since e636489 was fd0047e, checked in by Joel Sherrill <joel.sherrill@…>, on 09/27/07 at 14:40:53

2007-09-27 Joel Sherrill <joel.sherrill@…>

  • ChangeLog?, Makefile, README, gen-soccon.c, gsocket.h, init.c: New files.
  • Property mode set to 100644
File size: 419 bytes
Line 
1/*
2 *  Simple main wrapper for RTEMS with configuration
3 */
4
5#include <bsp.h>
6
7#include <stdlib.h>
8
9rtems_task Init(
10  rtems_task_argument ignored
11)
12{
13  main( 0, NULL );
14  exit( 0 );
15}
16
17/* configuration information */
18
19#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
20
21#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
22
23#define CONFIGURE_MAXIMUM_TASKS 1
24
25#define CONFIGURE_INIT
26
27#include <rtems/confdefs.h>
28
29/* end of file */
Note: See TracBrowser for help on using the repository browser.