source: rtems/c/src/optman/rtems/no-dpmem.c @ 62c4e481

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