source: rtems/testsuites/sptests/spsize/init.c @ ac2512ab

4.104.114.84.95
Last change on this file since ac2512ab was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*  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$
22 */
23
24#define TEST_INIT
25#include "system.h"
26
27/* #define HAVE_MENU */
28
29rtems_task Test_task();
30void size_rtems( int mode );
31
32rtems_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}
Note: See TracBrowser for help on using the repository browser.