source: rtems/c/src/tests/samples/paranoia/init.c @ 3e26377b

4.104.114.84.95
Last change on this file since 3e26377b was 3e26377b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:53:41

2003-09-04 Joel Sherrill <joel@…>

  • README, base_mp/apptask.c, base_mp/init.c, base_mp/system.h, base_mp/node1/base_mp.doc, base_mp/node2/base_mp.doc, base_sp/apptask.c, base_sp/base_sp.doc, base_sp/init.c, base_sp/system.h, cdtest/init.c, cdtest/main.cc, cdtest/system.h, fileio/fileio.doc, fileio/init.c, fileio/system.h, hello/hello.doc, hello/init.c, hello/system.h, minimum/init.c, minimum/minimum.doc, paranoia/init.c, paranoia/paranoia.doc, paranoia/system.h, ticker/init.c, ticker/system.h, ticker/tasks.c, ticker/ticker.doc, unlimited/init.c, unlimited/system.h, unlimited/test1.c, unlimited/test2.c, unlimited/test3.c, unlimited/unlimited.doc: URL for license changed.
  • 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.rtems.com/license/LICENSE.
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.