source: rtems/testsuites/mptests/mp14/exit.c @ c8e8f119

4.104.114.84.95
Last change on this file since c8e8f119 was 8f71a36, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/20/04 at 07:09:31

Remove stray white spaces.

  • Property mode set to 100644
File size: 854 bytes
Line 
1/*  Exit_test
2 *
3 *  This routine safely stops the test and prints some information
4 *
5 *  Input parameters:   NONE
6 *
7 *  Output parameters:  NONE
8 *
9 *  COPYRIGHT (c) 1989-1999.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 *
16 *  $Id$
17 */
18
19#include "system.h"
20
21void Exit_test( void )
22{
23  rtems_status_code status;
24  rtems_mode        old_mode;
25
26  /*
27   * Wait a bit before shutting down so we don't screw up the other node
28   * when our MPCI shuts down
29   */
30
31  rtems_task_wake_after(20);
32
33  status = rtems_task_mode( RTEMS_NO_PREEMPT, RTEMS_PREEMPT_MASK, &old_mode );
34  directive_failed( status, "rtems_task_mode" );
35
36  MPCI_Print_statistics();
37
38  rtems_shutdown_executive( 0 );
39}
Note: See TracBrowser for help on using the repository browser.