source: rtems/testsuites/psxtests/psx13/main.c @ 3cec2df

5
Last change on this file since 3cec2df was 3cec2df, checked in by Sebastian Huber <sebastian.huber@…>, on 12/17/19 at 08:17:43

config: CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS

Rename CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS into
CONFIGURE_MAXIMUM_FILE_DESCRIPTORS.

Update #3753.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*
2 *  Simple test program -- simplified version of sample test hello.
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.org/license/LICENSE.
10 */
11
12
13#ifdef HAVE_CONFIG_H
14#include "config.h"
15#endif
16
17#include <bsp.h>
18#include <pmacros.h>
19
20void test_main( void );
21rtems_task Init(
22  rtems_task_argument ignored
23);
24
25rtems_task Init(
26  rtems_task_argument ignored
27)
28{
29  test_main();
30  rtems_test_exit( 0 );
31}
32
33/* configuration information */
34
35#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
36#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
37
38#define CONFIGURE_MAXIMUM_FILE_DESCRIPTORS 6
39
40#define CONFIGURE_MAXIMUM_TASKS 1
41
42#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
43
44#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
45
46#define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT
47
48#define CONFIGURE_INIT
49
50#include <rtems/confdefs.h>
51
52/* end of file */
Note: See TracBrowser for help on using the repository browser.