source: rtems/bsps/shared/shmdr/shmdr-mpisr.c @ a2dad96

5
Last change on this file since a2dad96 was 4b28d3c, checked in by Sebastian Huber <sebastian.huber@…>, on 04/04/18 at 14:39:58

bsps: Move shmdr to bsps

This patch is a part of the BSP source reorganization.

Update #3285.

  • 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.