source: rtems/c/src/optman/rtems/no-dpmem.c @ 5e9b32b

4.104.114.84.95
Last change on this file since 5e9b32b was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15

posix support initially added

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[ac7d5ef0]1/*
2 *  Dual Port Memory Manager
3 *
4 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
5 *  On-Line Applications Research Corporation (OAR).
6 *  All rights assigned to U.S. Government, 1994.
7 *
8 *  This material may be reproduced by or for the U.S. Government pursuant
9 *  to the copyright license under the clause at DFARS 252.227-7013.  This
10 *  notice must appear in all copies of this file and its derivatives.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
[5e9b32b]16#include <rtems/score/address.h>
17#include <rtems/score/object.h>
18#include <rtems/score/thread.h>
[3a4ae6c]19
20#include <rtems/rtems/status.h>
21#include <rtems/rtems/types.h>
22#include <rtems/rtems/dpmem.h>
[ac7d5ef0]23
24void _Dual_ported_memory_Manager_initialization(
25  unsigned32 maximum_ports
26)
27{
28}
29
30rtems_status_code rtems_port_create(
[3235ad9]31  rtems_name    name,
[ac7d5ef0]32  void         *internal_start,
33  void         *external_start,
34  unsigned32    length,
35  Objects_Id   *id
36)
37{
[3a4ae6c]38  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]39}
40
41rtems_status_code rtems_port_ident(
[3235ad9]42  rtems_name    name,
[ac7d5ef0]43  Objects_Id   *id
44)
45{
[3a4ae6c]46  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]47}
48
49rtems_status_code rtems_port_delete(
50  Objects_Id id
51)
52{
[3a4ae6c]53  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]54}
55
56rtems_status_code rtems_port_internal_to_external(
57  Objects_Id   id,
58  void        *internal,
59  void       **external
60)
61{
[3a4ae6c]62  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]63}
64
65rtems_status_code rtems_port_external_to_internal(
66  Objects_Id   id,
67  void        *external,
68  void       **internal
69)
70{
[3a4ae6c]71  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]72}
Note: See TracBrowser for help on using the repository browser.