source: rtems/c/src/tests/sptests/sp07/taskexit.c @ ac7d5ef0

4.104.114.84.95
Last change on this file since ac7d5ef0 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 880 bytes
Line 
1/*  Task_exit_extension
2 *
3 *  This routine is the task exitted user extension.
4 *
5 *  Input parameters:   NONE
6 *
7 *  Output parameters:  NONE
8 *
9 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
10 *  On-Line Applications Research Corporation (OAR).
11 *  All rights assigned to U.S. Government, 1994.
12 *
13 *  This material may be reproduced by or for the U.S. Government pursuant
14 *  to the copyright license under the clause at DFARS 252.227-7013.  This
15 *  notice must appear in all copies of this file and its derivatives.
16 *
17 *  $Id$
18 */
19
20#include "system.h"
21
22rtems_extension Task_exit_extension(
23  rtems_tcb *running_task
24)
25{
26  if ( task_number( running_task->Object.id ) > 0 ) {
27    puts_nocr( "RTEMS_TASK_EXITTED - extension invoked for " );
28    put_name( Task_name[ task_number( running_task->Object.id ) ], TRUE );
29  }
30
31  puts("*** END OF TEST 7 ***" );
32  exit( 0 );
33}
Note: See TracBrowser for help on using the repository browser.