source: rtems/testsuites/sptests/sp17/task2.c @ 8fbdf07

4.104.114.84.95
Last change on this file since 8fbdf07 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.1 KB
Line 
1/*  Task_2
2 *
3 *  This task initializes the signal catcher, sends the first signal
4 *  if running on the first node, and loops while waiting for signals.
5 *
6 *  NOTE: The signal catcher is not reentrant and hence RTEMS_NO_ASR must
7 *        be a part of its execution mode.
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#include "system.h"
25
26rtems_task Task_2(
27  rtems_task_argument argument
28)
29{
30  rtems_status_code status;
31
32  Task_2_preempted = FALSE;
33
34  puts( "TA2 - Suspending self" );
35  status = rtems_task_suspend( RTEMS_SELF );
36  directive_failed( status, "rtems_task_suspend of TA2" );
37
38  puts( "TA2 - signal_return preempted correctly" );
39
40  Task_2_preempted = TRUE;
41
42  status = rtems_task_suspend( RTEMS_SELF );
43  directive_failed( status, "rtems_task_suspend of TA2" );
44}
Note: See TracBrowser for help on using the repository browser.