source: rtems/c/src/lib/libbsp/shmdr/mpisr.c @ 48bfd992

4.104.114.84.95
Last change on this file since 48bfd992 was 48bfd992, checked in by Joel Sherrill <joel.sherrill@…>, on 11/30/99 at 19:58:02

Renamed shm.h to shm_driver.h to avoid conflicts with POSIX shm.h.

Renamed file shmsupp/intr.c in some BSPs to shmsupp/cause_intr.c to
avoid conflict with rtems/src/intr.c (Classic API Interrupt Manager).

  • Property mode set to 100644
File size: 446 bytes
RevLine 
[ac7d5ef0]1/*  _Shm_isr()
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>
[48bfd992]14#include "shm_driver.h"
[ac7d5ef0]15
16rtems_isr Shm_isr(
17  rtems_vector_number vector
18)
19{
20  Shm_Interrupt_count += 1;
21  rtems_multiprocessing_announce();
22}
Note: See TracBrowser for help on using the repository browser.