source: rtems/testsuites/itrontests/itronhello/init.c @ 3136f5c9

4.104.114.84.95
Last change on this file since 3136f5c9 was 352c9b2, checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/99 at 22:07:23

This patch adds the basic framework for the ITRON 3.0 API implementation
for RTEMS.

  • Property mode set to 100644
File size: 800 bytes
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 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.OARcorp.com/rtems/license.html.
16 *
17 *  $Id$
18 */
19
20#define TEST_INIT
21#include "system.h"
22#include <stdio.h>
23
24void ITRON_Init( void )
25{
26  printf( "\n\n*** ITRON HELLO WORLD TEST ***\n" );
27  printf( "Hello World\n" );
28  printf( "*** END OF ITRON HELLO WORLD TEST ***\n" );
29  exit( 0 );
30}
Note: See TracBrowser for help on using the repository browser.