source: rtems/testsuites/sptests/spfifo01/main.c @ 4d39a901

4.115
Last change on this file since 4d39a901 was 4d39a901, checked in by Joel Sherrill <joel.sherrill@…>, on 06/08/10 at 00:31:53

2010-06-07 Bharath Suri <bharath.s.jois@…>

  • spfifo01/main.c: New file.
  • Property mode set to 100644
File size: 780 bytes
Line 
1/*
2 *  COPYRIGHT (c) 1989-2010.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12/* Includes */
13#include <bsp.h>
14#include <tmacros.h>
15
16void test_main(void);
17
18rtems_task Init(
19  rtems_task_argument not_used
20)
21{
22  test_main();
23  rtems_test_exit(0);
24}
25
26#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
27#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
28
29#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
30#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 6
31
32#define CONFIGURE_MAXIMUM_TASKS 1
33
34#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
35
36#define CONFIGURE_INIT
37
38#include <rtems/confdefs.h>
39
40/* end of file */
Note: See TracBrowser for help on using the repository browser.