source: rtems/testsuites/mptests/mp14/exit.c @ 60b791ad

4.104.114.84.95
Last change on this file since 60b791ad was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 910 bytes
RevLine 
[ac7d5ef0]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 *
[60b791ad]9 *  COPYRIGHT (c) 1989-1998.
[ac7d5ef0]10 *  On-Line Applications Research Corporation (OAR).
[03f2154e]11 *  Copyright assigned to U.S. Government, 1994.
[ac7d5ef0]12 *
[98e4ebf5]13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
[03f2154e]15 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]16 *
17 *  $Id$
18 */
19
20#include "system.h"
21
22void Exit_test( void )
23{
24  rtems_status_code status;
25  rtems_mode        old_mode;
26
[8b2ecf85]27  /*
28   * Wait a bit before shutting down so we don't screw up the other node
29   * when our MPCI shuts down
30   */
31 
32  rtems_task_wake_after(20);
33 
[ac7d5ef0]34  status = rtems_task_mode( RTEMS_NO_PREEMPT, RTEMS_PREEMPT_MASK, &old_mode );
35  directive_failed( status, "rtems_task_mode" );
36
37  MPCI_Print_statistics();
38
39  rtems_shutdown_executive( 0 );
40}
Note: See TracBrowser for help on using the repository browser.