source: rtems/c/src/lib/libbsp/no_cpu/no_bsp/shmsupp/addrconv.c @ f1433c79

Last change on this file since f1433c79 was 48bfd992, checked in by Joel Sherrill <joel.sherrill@…>, on 11/30/99 at 19:58:02

Renamed shm.h to shm_driver.h to avoid conflicts with POSIX shm.h.

Renamed file shmsupp/intr.c in some BSPs to shmsupp/cause_intr.c to
avoid conflict with rtems/src/intr.c (Classic API Interrupt Manager).

  • Property mode set to 100644
File size: 593 bytes
RevLine 
[ac7d5ef0]1/*  Shm_Convert_address
2 *
3 *  No address range conversion is required.
4 *
5 *  Input parameters:
6 *    address - address to convert
7 *
8 *  Output parameters:
9 *    returns - converted address
10 *
[08311cc3]11 *  COPYRIGHT (c) 1989-1999.
[ac7d5ef0]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
[03f2154e]16 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]17 *
18 *  $Id$
19 */
20
21#include <rtems.h>
22#include <bsp.h>
[48bfd992]23#include <shm_driver.h>
[ac7d5ef0]24
25void *Shm_Convert_address(
26  void *address
27)
28{
29  return ( address );
30}
Note: See TracBrowser for help on using the repository browser.