source: rtems/testsuites/mptests/mp06/initimpl.h @ d24b301

5
Last change on this file since d24b301 was 0b520cb, checked in by Sebastian Huber <sebastian.huber@…>, on 11/06/19 at 18:28:29

mptests: Avoid build system defined defines

Update #3818.

  • Property mode set to 100644
File size: 1.7 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.rtems.org/license/LICENSE.
20 */
21
22#ifdef HAVE_CONFIG_H
23#include "config.h"
24#endif
25
26#define CONFIGURE_INIT
27#include "system.h"
28
29rtems_task Init(
30  rtems_task_argument argument
31)
32{
33  rtems_status_code status;
34
35  printf(
36    "\n\n*** TEST 6 -- NODE %" PRId32 " ***\n",
37    Multiprocessing_configuration.node
38  );
39
40  Task_name[ 1 ] = rtems_build_name( '1', '1', '1', ' ' );
41  Task_name[ 2 ] = rtems_build_name( '2', '2', '2', ' ' );
42
43  puts( "Creating Test_task (Global)" );
44  status = rtems_task_create(
45    Task_name[Multiprocessing_configuration.node],
46    1,
47    RTEMS_MINIMUM_STACK_SIZE,
48    RTEMS_DEFAULT_MODES,
49    RTEMS_GLOBAL,
50    &Task_id[ 1 ]
51  );
52  directive_failed( status, "rtems_task_create" );
53
54  puts( "Starting Test_task (Global)" );
55  status = rtems_task_start( Task_id[ 1 ], Test_task, 0 );
56  directive_failed( status, "rtems_task_start" );
57
58  Timer_name[ 1 ] = rtems_build_name( 'T', 'M', '1', ' ' );
59
60  status = rtems_timer_create( Timer_name[ 1 ], &Timer_id[ 1 ] );
61  directive_failed( status, "rtems_timer_create" );
62
63  puts( "Deleting initialization task" );
64  rtems_task_exit();
65}
Note: See TracBrowser for help on using the repository browser.