URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [unix/] [posix/] [shmsupp/] [mpisr.c] - Rev 1765
Compare with Previous | Blame | View Log
/* Shm_setvec * * This driver routine sets the SHM interrupt vector to point to the * driver's SHM interrupt service routine. * * Input parameters: NONE * * Output parameters: NONE * * 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.OARcorp.com/rtems/license.html. * * mpisr.c,v 1.9 1999/11/30 19:58:01 joel Exp */ #include <bsp.h> #include <shm_driver.h> void Shm_setvec( void ) { int vector; vector = _CPU_SHM_Get_vector(); if ( vector ) set_vector( Shm_isr, vector, 1 ); }