source: rtems/testsuites/mptests/mp09/initimpl.h @ 0b520cb

5
Last change on this file since 0b520cb 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.9 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 9 -- 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  Queue_name[ 1 ] = rtems_build_name( 'M', 'S', 'G', ' ' );
44
45  if ( Multiprocessing_configuration.node == 1 ) {
46    puts( "Creating Message Queue (Global)" );
47    status = rtems_message_queue_create(
48      Queue_name[ 1 ],
49      3,
50      16,
51      RTEMS_GLOBAL,
52      &Queue_id[ 1 ]
53    );
54    directive_failed( status, "rtems_message_queue_create" );
55  }
56
57  puts( "Creating Test_task (local)" );
58  status = rtems_task_create(
59    Task_name[Multiprocessing_configuration.node],
60    1,
61    RTEMS_MINIMUM_STACK_SIZE,
62    RTEMS_TIMESLICE,
63    RTEMS_DEFAULT_ATTRIBUTES,
64    &Task_id[ 1 ]
65  );
66  directive_failed( status, "rtems_task_create" );
67
68  puts( "Starting Test_task (local)" );
69  status = rtems_task_start( Task_id[ 1 ], Test_task, 0 );
70  directive_failed( status, "rtems_task_start" );
71
72  puts( "Deleting initialization task" );
73  rtems_task_exit();
74}
Note: See TracBrowser for help on using the repository browser.