source: rtems/c/src/libchip/shmdr/mpisr.c @ 6279149

4.115
Last change on this file since 6279149 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 398 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.rtems.org/license/LICENSE.
9 */
10
11#include <rtems.h>
12#include "shm_driver.h"
13
14void Shm_isr(void)
15{
16  Shm_Interrupt_count += 1;
17  rtems_multiprocessing_announce();
18}
Note: See TracBrowser for help on using the repository browser.