source: rtems/testsuites/mptests/mp04/task1.c @ 116845e8

4.104.114.84.95
Last change on this file since 116845e8 was 116845e8, checked in by Joel Sherrill <joel.sherrill@…>, on 08/02/02 at 00:53:03

2002-08-01 Joel Sherrill <joel@…>

  • Per PR47 add support for buffered test output. This involved adding defines to redirect output to a buffer and dump it when full, at "test pause", and at exit. To avoid problems when redefining exit(), all tests were modified to call rtems_test_exit(). Some tests, notable psxtests, had to be modified to include the standard test macro .h file (pmacros.h or tmacros.h) to enable this support.
  • mp01/task1.c, mp02/task1.c, mp03/task1.c, mp04/task1.c, mp05/task1.c, mp06/task1.c, mp07/task1.c, mp08/task1.c, mp09/task1.c, mp10/init.c, mp11/init.c, mp12/init.c, mp13/init.c, mp13/task2.c: Modified.
  • Property mode set to 100644
File size: 2.1 KB
Line 
1/*  Test_task
2 *
3 *  This task tests the rtems_task_set_priority directive on a remote task.
4 *
5 *  Input parameters:
6 *    argument - task argument
7 *
8 *  Output parameters:  NONE
9 *
10 *  COPYRIGHT (c) 1989-1999.
11 *  On-Line Applications Research Corporation (OAR).
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#include "system.h"
21
22extern rtems_multiprocessing_table Multiprocessing_configuration;
23
24rtems_task Test_task(
25  rtems_task_argument argument
26)
27{
28  rtems_id            tid;
29  rtems_status_code   status;
30  rtems_unsigned32    remote_node;
31  rtems_id            remote_tid;
32  rtems_task_priority previous_priority;
33  rtems_task_priority previous_priority_1;
34
35  status = rtems_task_ident( RTEMS_SELF, RTEMS_SEARCH_ALL_NODES, &tid );
36  directive_failed( status, "rtems_task_ident" );
37
38  puts( "Getting TID of remote task" );
39  remote_node = (Multiprocessing_configuration.node == 1) ? 2 : 1;
40  puts_nocr( "Remote task's name is : " );
41  put_name( Task_name[ remote_node ], TRUE );
42
43  do {
44      status = rtems_task_ident(
45          Task_name[ remote_node ],
46          RTEMS_SEARCH_ALL_NODES,
47          &remote_tid
48          );
49  } while ( status != RTEMS_SUCCESSFUL );
50
51  directive_failed( status, "rtems_task_ident" );
52
53  status = rtems_task_set_priority(
54    remote_tid,
55    Multiprocessing_configuration.node,
56    &previous_priority
57  );
58  directive_failed( status, "rtems_task_set_priority" );
59
60  if ( previous_priority != remote_node ) {
61    printf(
62      "Remote priority (0x%x) does not match remote node (0x%x)!!!\n",
63      previous_priority,
64      remote_node
65    );
66    rtems_test_exit( 0xf0000 );
67  }
68
69  do {
70    status = rtems_task_set_priority(
71      RTEMS_SELF,
72      RTEMS_CURRENT_PRIORITY,
73      &previous_priority_1
74    );
75    directive_failed( status, "rtems_task_set_priority" );
76  } while ( previous_priority_1 != remote_node );
77
78  puts( "Local task priority has been set" );
79
80  puts( "*** END OF TEST 4 ***" );
81  rtems_test_exit( 0 );
82}
Note: See TracBrowser for help on using the repository browser.