source: rtems/testsuites/sptests/spfifo02/main.c @ ba021d5c

4.115
Last change on this file since ba021d5c was cfde6479, checked in by Jennifer Averett <Jennifer.Averett@…>, on 06/07/10 at 19:09:28

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

PR PR1542

  • Makefile.am, configure.ac: Coverage improvement: fifo_open.
  • spfifo01/spfifo01.doc, spfifo01/spfifo01.scn, spfifo01/test.c, spfifo02/Makefile.am, spfifo02/main.c, spfifo02/spfifo02.doc, spfifo02/spfifo02.scn, spfifo02/test.c, spfifo03/Makefile.am, spfifo03/main.c, spfifo03/spfifo03.doc, spfifo03/spfifo03.scn, spfifo03/test.c, spfifo04/Makefile.am, spfifo04/main.c, spfifo04/spfifo04.doc, spfifo04/spfifo04.scn, spfifo04/test.c: New files.
  • Property mode set to 100644
File size: 1.0 KB
RevLine 
[cfde6479]1/*  Init
2 *
3 *  This routine is the initialization task for this test program.
4 *  It is a user initialization task and has the responsibility
5 *  of invoking the test routine
6 *
7 *  Input parameters:
8 *    not_used
9 *
10 *  Output parameters:  NONE
11 *
12 *  COPYRIGHT (c) 1989-1999.
13 *  On-Line Applications Research Corporation (OAR).
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.com/license/LICENSE.
18 *
19 *  $Id$
20 */
21
22/* Includes */
23#include <bsp.h>
24#include <tmacros.h>
25
26void test_main(void);
27
28rtems_task Init(
29  rtems_task_argument not_used
30)
31{
32  test_main();
33  rtems_test_exit(0);
34}
35
36#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
37#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
38
39#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
40#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 6
41
42#define CONFIGURE_MAXIMUM_TASKS 1
43
44#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
45#define CONFIGURE_PIPES_ENABLED
46#define CONFIGURE_INIT
47
48#include <rtems/confdefs.h>
49
50/* end of file */
Note: See TracBrowser for help on using the repository browser.