source: rtems/c/src/lib/libbsp/shmdr/fatal.c @ 57d673c

4.104.114.84.95
Last change on this file since 57d673c was 4e89a12, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:56:25

2003-09-04 Joel Sherrill <joel@…>

  • addlq.c, cnvpkt.c, dump.c, fatal.c, getlq.c, getpkt.c, init.c, initlq.c, intr.c, mpci.h, mpisr.c, poll.c, receive.c, retpkt.c, send.c, setckvec.c, shm_driver.h: URL for license changed.
  • Property mode set to 100644
File size: 947 bytes
Line 
1/*  void MPCI_Fatal( error )
2 *
3 *  This routine is the shared memory driver fatal error handler.
4 *
5 *  Input parameters:
6 *    error - fatal error code
7 *
8 *  Output parameters:  NEVER RETURNS
9 *
10 *  COPYRIGHT (c) 1989-1999.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#include <rtems.h>
21#include "shm_driver.h"
22
23void MPCI_Fatal(
24  Internal_errors_Source  source,
25  boolean                 is_internal,
26  rtems_unsigned32        error
27)
28{
29   /*   Eventually need to attempt to broadcast a K_FATAL message
30    *   without checking for all possible errors (do not want to
31    *   recurse).
32    *
33    *   Also need to avoid using Shm_Node_statuses if the driver has not been
34    *   initialized.
35    */
36
37   Shm_Local_node_status->error = Shm_Convert(error);
38}
Note: See TracBrowser for help on using the repository browser.