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

Last change on this file since a4199003 was b547e84, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:44:56

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

  • clock/ckinit.c, console/console.c, include/bsp.h, shmsupp/addrconv.c, shmsupp/getcfg.c, shmsupp/lock.c, shmsupp/mpisr.c, startup/bspclean.c, startup/bspstart.c, startup/linkcmds, startup/main.c, startup/setvec.c, timer/timer.c, timer/timerisr.c: URL for license changed.
  • 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
[b547e84]8 *  http://www.rtems.com/license/LICENSE.
[ac7d5ef0]9 *
10 *  $Id$
11 */
12
13#include <rtems.h>
14#include <bsp.h>
[48bfd992]15#include <shm_driver.h>
[ac7d5ef0]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.