source: rtems/c/src/tests/sptests/sp14/task2.c @ 3aa4c2e0

4.104.114.84.95
Last change on this file since 3aa4c2e0 was 3aa4c2e0, checked in by Joel Sherrill <joel.sherrill@…>, on 08/02/02 at 00:52:14

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.
  • sp01/task1.c, sp02/task1.c, sp03/task2.c, sp04/task1.c, sp05/task1.c, sp06/task1.c, sp07/taskexit.c, sp08/task1.c, sp09/task1.c, sp11/task1.c, sp12/pritask.c, sp12/task5.c, sp13/task1.c, sp14/task2.c, sp15/task1.c, sp16/task1.c, sp17/task1.c, sp19/fptask.c, sp20/task1.c, sp21/task1.c, sp22/task1.c, sp23/task1.c, sp24/task1.c, sp25/task1.c, sp26/init.c, sp26/task1.c, sp30/task1.c, sp31/task1.c, spsize/init.c, spsize/size.c: Modified.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*  Task_2
2 *
3 *  This routine serves as a test task.  It verifies that one task can
4 *  send signals to another task ( invoking the other task's RTEMS_ASR ).
5 *
6 *  Input parameters:
7 *    argument - task argument
8 *
9 *  Output parameters:  NONE
10 *
11 *  COPYRIGHT (c) 1989-1999.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.OARcorp.com/rtems/license.html.
17 *
18 *  $Id$
19 */
20
21#include "system.h"
22
23rtems_task Task_2(
24  rtems_task_argument argument
25)
26{
27  rtems_status_code status;
28
29  puts( "TA2 - rtems_signal_send - RTEMS_SIGNAL_17 to TA1" );
30  status = rtems_signal_send( Task_id[ 1 ], RTEMS_SIGNAL_17 );
31  directive_failed( status, "rtems_signal_send" );
32
33  puts( "TA2 - rtems_task_wake_after - yield processor" );
34  status = rtems_task_wake_after( RTEMS_YIELD_PROCESSOR );
35  directive_failed( status, "rtems_task_wake_after" );
36
37  puts("TA2 - rtems_signal_send - RTEMS_SIGNAL_18 and RTEMS_SIGNAL_19 to TA1");
38  status = rtems_signal_send( Task_id[ 1 ], RTEMS_SIGNAL_18 | RTEMS_SIGNAL_19 );
39  directive_failed( status, "rtems_signal_send" );
40
41  puts( "TA2 - rtems_task_wake_after - yield processor" );
42  status = rtems_task_wake_after( RTEMS_YIELD_PROCESSOR );
43  directive_failed( status, "rtems_task_wake_after" );
44
45  puts( "*** END OF TEST 14 ***" );
46  rtems_test_exit( 0 );
47}
Note: See TracBrowser for help on using the repository browser.