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

4.104.114.84.95
Last change on this file since df49c60 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
Line 
1/*  _Shm_isr()
2 *
3 *  COPYRIGHT (c) 1989-1999.
4 *  On-Line Applications Research Corporation (OAR).
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.OARcorp.com/rtems/license.html.
9 *
10 *  $Id$
11 */
12
13#include <rtems.h>
14#include "shm_driver.h"
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.