source: rtems/testsuites/samples/paranoia/init.c @ d25d17b

4.104.114.84.95
Last change on this file since d25d17b was d25d17b, checked in by Joel Sherrill <joel.sherrill@…>, on 04/17/02 at 14:01:40

2002-04-17 Ralf Corsepius <corsepiu@…>

  • base_sp/apptask.c: Include <stdlib.h>.
  • hello/init.c: Ditto.
  • paranoia/init.c: Ditto.
  • ticker/tasks.c: Ditto.
  • unlimited/init.c: Ditto.
  • unlimited/test1.c: Ditto.
  • unlimited/test2.c: Ditto.
  • unlimited/test3.c: Ditto.
  • Property mode set to 100644
File size: 1.1 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.OARcorp.com/rtems/license.html.
19 *
20 *  $Id$
21 */
22
23#define CONFIGURE_INIT
24#include "system.h"
25#include <stdio.h>
26#include <stdlib.h> /* exit */
27
28extern int paranoia(int, char **);
29
30char *args[2] = { "paranoia", 0 };
31
32rtems_task Init(
33  rtems_task_argument ignored
34)
35{
36  /*
37   *  Install whatever optional floating point assistance package
38   *  is required by this CPU.
39   */
40
41#if (defined (m68040))
42  M68KFPSPInstallExceptionHandlers ();
43#endif
44
45  printf( "\n\n*** PARANOIA TEST ***\n" );
46  paranoia(1, args);
47  printf( "*** END OF PARANOIA TEST ***\n" );
48  exit( 0 );
49}
Note: See TracBrowser for help on using the repository browser.