OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [tests/] [sptests/] [spsize/] [init.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  Init
2
 *
3
 *  This routine is the initialization task for this test program.
4
 *  It is a user initialization task 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:
10
 *    argument - task argument
11
 *
12
 *  Output parameters:  NONE
13
 *
14
 *  COPYRIGHT (c) 1989-1999.
15
 *  On-Line Applications Research Corporation (OAR).
16
 *
17
 *  The license and distribution terms for this file may be
18
 *  found in the file LICENSE in this distribution or at
19
 *  http://www.OARcorp.com/rtems/license.html.
20
 *
21
 *  $Id: init.c,v 1.2 2001-09-27 12:02:38 chris Exp $
22
 */
23
 
24
#define TEST_INIT
25
#include "system.h"
26
 
27
/* #define HAVE_MENU */
28
 
29
rtems_task Test_task();
30
void size_rtems( int mode );
31
 
32
rtems_task Init(
33
  rtems_task_argument argument
34
)
35
{
36
#if defined(HAVE_MENU)
37
  int choice = 0;
38
#endif
39
 
40
  setvbuf(stdout, 0, _IONBF, 0);
41
 
42
  puts( "\n*** RTEMS SIZE PROGRAM ***" );
43
  size_rtems( 1 );
44
  puts( "*** END OF RTEMS SIZE PROGRAM ***" );
45
  exit( 0 );
46
#if defined(HAVE_MENU)
47
  do {
48
    printf( "\n\nPlease select program mode:\n" );
49
    printf( "  1) Print Formulas\n" );
50
    printf( "  2) Determine Workspace Size\n" );
51
    printf( "  3) Exit\n" );
52
    printf( "Enter number of choice (1,2,3) : " );
53
 
54
    choice = getint();
55
    switch( choice ) {
56
      case 1: size_rtems( 1 );  break;
57
      case 2: size_rtems( 0 );  break;
58
      case 3: exit( 0 );
59
      default:  continue;
60
    }
61
  } while ( FOREVER );
62
#endif
63
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.