source: rtems/c/src/lib/libbsp/no_cpu/no_bsp/shmsupp/mpisr.c @ 08311cc3

4.104.114.84.95
Last change on this file since 08311cc3 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[ac7d5ef0]1/*  Shm_isr_nobsp()
2 *
[08311cc3]3 *  COPYRIGHT (c) 1989-1999.
[ac7d5ef0]4 *  On-Line Applications Research Corporation (OAR).
5 *
[98e4ebf5]6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
[03f2154e]8 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]9 *
10 *  $Id$
11 */
12
13#include <rtems.h>
14#include <bsp.h>
15#include <shm.h>
16
17rtems_isr Shm_isr_nobsp( void )
18{
19  /*
20   *  If this routine has to do anything other than the mpisr.c
21   *  found in the generic driver, then copy the contents of the generic
22   *  mpisr.c and augment it to satisfy this particular board.  Typically,
23   *  you need to have a board specific mpisr.c when the interrupt
24   *  must be cleared.
25   *
26   *  If the generic mpisr.c satisifies your requirements, then
27   *  remove this routine from your target's shmsupp/mpisb.c file.
28   *  Then simply install the generic Shm_isr in the Shm_setvec
29   *  routine below.
30   */
31}
32
33/*  Shm_setvec
34 *
35 *  This driver routine sets the SHM interrupt vector to point to the
36 *  driver's SHM interrupt service routine.
37 *
38 *  Input parameters:  NONE
39 *
40 *  Output parameters: NONE
41 */
42
43void Shm_setvec( void )
44{
45  /* XXX: FIX ME!!! */
46}
Note: See TracBrowser for help on using the repository browser.