source: rtems/testsuites/psxtests/psxtime/main.c @ 2e1c526

4.115
Last change on this file since 2e1c526 was cafefbf, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/22/11 at 09:47:36

Add HAVE_CONFIG_H.

  • Property mode set to 100644
File size: 911 bytes
Line 
1/*
2 *  Simple RTEMS startup to call main
3 *
4 *  COPYRIGHT (c) 1989-2009.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#ifdef HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#define CONFIGURE_INIT
19
20#include <bsp.h>
21#include <tmacros.h>  /* instantiate buffering code if needed */
22
23void test_main( void );
24rtems_task Init(
25  rtems_task_argument ignored
26);
27
28rtems_task Init(
29  rtems_task_argument ignored
30)
31{
32  test_main();
33  rtems_test_exit( 0 );
34}
35
36/* configuration information */
37
38#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
39#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
40
41#define CONFIGURE_MAXIMUM_TASKS 1
42
43#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
44
45#define CONFIGURE_INIT
46
47#include <rtems/confdefs.h>
48
49/* end of file */
Note: See TracBrowser for help on using the repository browser.