source: rtems/c/src/exec/rtems/optman/no-dpmem.c @ 08311cc3

4.104.114.84.95
Last change on this file since 08311cc3 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*
2 *  Dual Port Memory Manager
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14#include <rtems/system.h>
15#include <rtems/score/address.h>
16#include <rtems/score/object.h>
17#include <rtems/score/thread.h>
18#include <rtems/score/interr.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  _Internal_error_Occurred(
39    INTERNAL_ERROR_RTEMS_API,
40    FALSE,
41    RTEMS_NOT_CONFIGURED
42  );
43  return RTEMS_NOT_CONFIGURED;
44}
45
46rtems_status_code rtems_port_ident(
47  rtems_name    name,
48  Objects_Id   *id
49)
50{
51  _Internal_error_Occurred(
52    INTERNAL_ERROR_RTEMS_API,
53    FALSE,
54    RTEMS_NOT_CONFIGURED
55  );
56  return RTEMS_NOT_CONFIGURED;
57}
58
59rtems_status_code rtems_port_delete(
60  Objects_Id id
61)
62{
63  _Internal_error_Occurred(
64    INTERNAL_ERROR_RTEMS_API,
65    FALSE,
66    RTEMS_NOT_CONFIGURED
67  );
68  return RTEMS_NOT_CONFIGURED;
69}
70
71rtems_status_code rtems_port_internal_to_external(
72  Objects_Id   id,
73  void        *internal,
74  void       **external
75)
76{
77  _Internal_error_Occurred(
78    INTERNAL_ERROR_RTEMS_API,
79    FALSE,
80    RTEMS_NOT_CONFIGURED
81  );
82  return RTEMS_NOT_CONFIGURED;
83}
84
85rtems_status_code rtems_port_external_to_internal(
86  Objects_Id   id,
87  void        *external,
88  void       **internal
89)
90{
91  _Internal_error_Occurred(
92    INTERNAL_ERROR_RTEMS_API,
93    FALSE,
94    RTEMS_NOT_CONFIGURED
95  );
96  return RTEMS_NOT_CONFIGURED;
97}
Note: See TracBrowser for help on using the repository browser.