source: rtems/c/src/lib/libbsp/unix/posix/shmsupp/addrconv.c @ 48bfd992

4.104.114.84.95
Last change on this file since 48bfd992 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: 559 bytes
Line 
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 *
11 *  COPYRIGHT (c) 1989-1999.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.OARcorp.com/rtems/license.html.
17 *
18 *  $Id$
19 */
20
21#include <bsp.h>
22#include <shm_driver.h>
23
24void *Shm_Convert_address(
25  void *addr
26)
27{
28  return ( addr );
29}
Note: See TracBrowser for help on using the repository browser.