source: rtems/testsuites/libtests/mathf/init.c @ b3dbca3

4.115
Last change on this file since b3dbca3 was b3dbca3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/13/11 at 12:11:10

2011-12-13 Ralf Corsépius <ralf.corsepius@…>

  • math/init.c, mathf/init.c, mathl/init.c: Move configuration section.
  • math/domath.c, mathf/domathf.c, mathl/domathl.c: Regenerate.
  • math/domath.in: Generate domath* prototype.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*  Init
2 *
3 *  This routine is the initialization task for this test program.
4 *  It is called from init_exec and has the responsibility for creating
5 *  and starting the tasks that make up the test.  If the time of day
6 *  clock is required for the test, it should also be set to a known
7 *  value by this function.
8 *
9 *  Input parameters:  NONE
10 *
11 *  Output parameters:  NONE
12 *
13 *  COPYRIGHT (c) 1989-1999.
14 *  On-Line Applications Research Corporation (OAR).
15 *
16 *  The license and distribution terms for this file may be
17 *  found in the file LICENSE in this distribution or at
18 *  http://www.rtems.com/license/LICENSE.
19 *
20 *  $Id$
21 */
22
23#ifdef HAVE_CONFIG_H
24#include "config.h"
25#endif
26
27#if __rtems__
28#include <bsp.h> /* for device driver prototypes */
29#endif
30
31#include <stdio.h>
32#include <stdlib.h>
33
34extern void domathf(void);
35
36#if __rtems__
37/* NOTICE: the clock driver is explicitly disabled */
38#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER
39#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
40
41#define CONFIGURE_MAXIMUM_TASKS           1
42#define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_FLOATING_POINT
43#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM
44
45#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
46
47#define CONFIGURE_INIT
48#include <rtems/confdefs.h>
49
50rtems_task Init(
51  rtems_task_argument ignored
52)
53#else
54int main( void )
55#endif
56{
57  fprintf( stdout, "*** FLOAT MATH TEST ***\n" );
58
59  domathf(); 
60
61  fprintf( stdout, "*** END OF FLOAT MATH TEST ***\n" );
62  exit( 0 );
63}
64
Note: See TracBrowser for help on using the repository browser.