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

4.104.115
Last change on this file since dd9cc9f7 was 5c980d0, checked in by Joel Sherrill <joel.sherrill@…>, on 09/05/08 at 14:48:37

2008-09-05 Joel Sherrill <joel.sherrill@…>

  • libchip/Makefile.am, libchip/shmdr/init.c, libchip/shmdr/mpisr.c, libchip/shmdr/poll.c, libchip/shmdr/shm_driver.h: Update shared memory driver to not use the clock ioctl to install a method to poll for input. It now uses a Class API Timer which means we can eliminate this special IOCTL from all clock drivers.
  • libchip/shmdr/setckvec.c: Removed.
  • Property mode set to 100644
File size: 410 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.com/license/LICENSE.
9 *
10 *  $Id$
11 */
12
13#include <rtems.h>
14#include "shm_driver.h"
15
16void Shm_isr(void)
17{
18  Shm_Interrupt_count += 1;
19  rtems_multiprocessing_announce();
20}
Note: See TracBrowser for help on using the repository browser.