summaryrefslogtreecommitdiffstats
path: root/bsps/shared/shmdr/shmdr-mpisr.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/shared/shmdr/shmdr-mpisr.c')
-rw-r--r--bsps/shared/shmdr/shmdr-mpisr.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/bsps/shared/shmdr/shmdr-mpisr.c b/bsps/shared/shmdr/shmdr-mpisr.c
new file mode 100644
index 0000000000..38449b7450
--- /dev/null
+++ b/bsps/shared/shmdr/shmdr-mpisr.c
@@ -0,0 +1,18 @@
+/* _Shm_isr()
+ *
+ * COPYRIGHT (c) 1989-1999.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#include <rtems.h>
+#include "shm_driver.h"
+
+void Shm_isr(void)
+{
+ Shm_Interrupt_count += 1;
+ rtems_multiprocessing_announce();
+}