source: rtems/testsuites/psxtests/psxchroot01/main.c @ cafefbf

4.115
Last change on this file since cafefbf 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: 749 bytes
Line 
1/*
2 *  Simple test program -- simplified version of sample test hello.
3 */
4
5#define CONFIGURE_INIT
6
7#ifdef HAVE_CONFIG_H
8#include "config.h"
9#endif
10
11#include <bsp.h>
12#include <pmacros.h>
13
14void test_main( void );
15
16rtems_task Init(
17  rtems_task_argument ignored
18)
19{
20  test_main();
21  rtems_test_exit( 0 );
22}
23
24/* configuration information */
25
26/* NOTICE: the clock driver is explicitly disabled */
27#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
28#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
29
30#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
31#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 10
32
33#define CONFIGURE_MAXIMUM_TASKS 1
34
35#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
36
37#define CONFIGURE_INIT
38
39#include <rtems/confdefs.h>
40
41/* end of file */
Note: See TracBrowser for help on using the repository browser.