source: rtems/c/src/tests/psxtests/psxstat/main.c @ df49c60

4.104.114.84.95
Last change on this file since df49c60 was df49c60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 15:00:15

Merged from 4.5.0-beta3a

  • Property mode set to 100644
File size: 932 bytes
Line 
1/*
2 *  Simple test program -- simplified version of sample test hello.
3 *
4 *  COPYRIGHT (c) 1989-1999.
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.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14#define TEST_INIT
15
16#include <bsp.h>
17
18void test_main( void );
19
20rtems_task Init(
21  rtems_task_argument ignored
22)
23{
24  test_main();
25  exit( 0 );
26}
27
28/* configuration information */
29
30#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
31#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
32
33#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
34#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 10
35
36#define CONFIGURE_MAXIMUM_TASKS 1
37
38#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
39#define CONFIGURE_INIT_TASK_STACK_SIZE    (RTEMS_MINIMUM_STACK_SIZE * 2)
40
41#define CONFIGURE_INIT
42
43#include <confdefs.h>
44
45/* end of file */
Note: See TracBrowser for help on using the repository browser.