source: rtems/testsuites/psxtests/psxmount/main.c @ 5c0c0cf

4.115
Last change on this file since 5c0c0cf was 5c0c0cf, checked in by Christian Mauderer <Christian.Mauderer@…>, on 03/27/14 at 13:23:21

privateenv: Use POSIX keys instead of task variables.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*
2 *  Simple test program -- check out of the basic file system mounting
3 *  capabilities
4 *  Attempt to mount the IMFS file system on a mount point in the base IMFS
5 */
6
7#define CONFIGURE_INIT
8
9#ifdef HAVE_CONFIG_H
10#include "config.h"
11#endif
12
13#include <bsp.h>
14#include <pmacros.h>
15
16/* forward declarations to avoid warnings */
17rtems_task Init(rtems_task_argument ignored);
18void test_main(void);
19
20rtems_task Init(
21  rtems_task_argument ignored
22)
23{
24  test_main();
25  rtems_test_exit( 0 );
26}
27
28/* configuration information */
29
30/* NOTICE: the clock driver is explicitly disabled */
31#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
32#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
33
34#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
35#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 10
36
37#define CONFIGURE_MAXIMUM_TASKS 1
38
39#define CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS 1
40
41#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
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.