source: rtems/c/src/lib/libbsp/unix/posix/shmsupp/addrconv.c @ 3e6211b

Last change on this file since 3e6211b was 3e6211b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:45:40

2003-09-04 Joel Sherrill <joel@…>

  • clock/clock.c, console/console.c, include/bsp.h, shmsupp/addrconv.c, shmsupp/cause_intr.c, shmsupp/getcfg.c, shmsupp/lock.c, shmsupp/mpisr.c, startup/bspclean.c, startup/bspstart.c, startup/exit.c, startup/setvec.c, timer/timer.c: URL for license changed.
  • Property mode set to 100644
File size: 554 bytes
RevLine 
[5c491aef]1/*  addrconv.v
2 *
3 *  No address range conversion is required.
4 *
5 *  Input parameters:
6 *    addr    - address to convert
7 *
8 *  Output parameters:
9 *    returns - converted address
10 *
[08311cc3]11 *  COPYRIGHT (c) 1989-1999.
[5c491aef]12 *  On-Line Applications Research Corporation (OAR).
13 *
[98e4ebf5]14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
[3e6211b]16 *  http://www.rtems.com/license/LICENSE.
[5c491aef]17 *
18 *  $Id$
19 */
20
21#include <bsp.h>
[48bfd992]22#include <shm_driver.h>
[5c491aef]23
24void *Shm_Convert_address(
25  void *addr
26)
27{
28  return ( addr );
29}
Note: See TracBrowser for help on using the repository browser.