URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [c/] [src/] [lib/] [libbsp/] [unix/] [posix/] [shmsupp/] [addrconv.c] - Rev 1765
Compare with Previous | Blame | View Log
/* addrconv.v * * No address range conversion is required. * * Input parameters: * addr - address to convert * * Output parameters: * returns - converted address * * 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. * * addrconv.c,v 1.9 1999/11/30 19:58:01 joel Exp */ #include <bsp.h> #include <shm_driver.h> void *Shm_Convert_address( void *addr ) { return ( addr ); }