source: rtems/testsuites/psxtests/psxmount/main.c @ 6c2de60

4.115
Last change on this file since 6c2de60 was 6c2de60, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/12 at 19:12:11

psxtests - Eliminate missing prototype warnings

  • Property mode set to 100644
File size: 934 bytes
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_RTEMS_INIT_TASKS_TABLE
40
41#define CONFIGURE_INIT
42
43#include <rtems/confdefs.h>
44
45/* end of file */
Note: See TracBrowser for help on using the repository browser.