source: rtems/c/src/tests/sptests/sp07/task4.c @ 9e0cdd8

Last change on this file since 9e0cdd8 was 9e0cdd8, checked in by Joel Sherrill <joel.sherrill@…>, on 12/16/03 at 23:34:42

2003-12-16 Joel Sherrill <joel@…>

PR 544/tests

  • sp07/Makefile.am, sp07/init.c, sp07/system.h, sp07/task4.c, sp07/tcreate.c, sp07/tdelete.c, sp07/trestart.c, sp07/tstart.c, sp09/system.h, sp19/system.h, sp20/system.h: Various modifications to make tests account for resources and not print at inappropriate times.
  • sp07/buffered_io.c: New file.
  • Property mode set to 100644
File size: 644 bytes
Line 
1/*  Task_4
2 *
3 *  This routine serves as a low priority test task that should exit
4 *  a soon as it runs to test the taskexitted user extension.
5 *  execute.
6 *
7 *  Input parameters:
8 *    argument - task argument
9 *
10 *  Output parameters:  NONE
11 *
12 *  COPYRIGHT (c) 1989-1999.
13 *  On-Line Applications Research Corporation (OAR).
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.com/license/LICENSE.
18 *
19 *  $Id$
20 */
21
22#include "system.h"
23
24rtems_task Task_4(
25  rtems_task_argument argument
26)
27{
28  buffered_io_flush();
29
30  puts( "TA4 - exitting task" );
31}
Note: See TracBrowser for help on using the repository browser.