source: rtems/c/src/exec/rtems/optman/no-dpmem.c @ 88d594a

4.104.114.84.95
Last change on this file since 88d594a was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 1.4 KB
Line 
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>
16#include <rtems/address.h>
17#include <rtems/dpmem.h>
18#include <rtems/object.h>
19#include <rtems/thread.h>
20
21void _Dual_ported_memory_Manager_initialization(
22  unsigned32 maximum_ports
23)
24{
25}
26
27rtems_status_code rtems_port_create(
28  Objects_Name  name,
29  void         *internal_start,
30  void         *external_start,
31  unsigned32    length,
32  Objects_Id   *id
33)
34{
35  return( RTEMS_NOT_CONFIGURED );
36}
37
38rtems_status_code rtems_port_ident(
39  Objects_Name  name,
40  Objects_Id   *id
41)
42{
43  return( RTEMS_NOT_CONFIGURED );
44}
45
46rtems_status_code rtems_port_delete(
47  Objects_Id id
48)
49{
50  return( RTEMS_NOT_CONFIGURED );
51}
52
53rtems_status_code rtems_port_internal_to_external(
54  Objects_Id   id,
55  void        *internal,
56  void       **external
57)
58{
59  return( RTEMS_NOT_CONFIGURED );
60}
61
62rtems_status_code rtems_port_external_to_internal(
63  Objects_Id   id,
64  void        *external,
65  void       **internal
66)
67{
68  return( RTEMS_NOT_CONFIGURED );
69}
Note: See TracBrowser for help on using the repository browser.