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

4.104.114.84.95
Last change on this file since c83b5678 was c83b5678, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/31/04 at 08:29:14

2004-03-31 Ralf Corsepius <ralf_corsepius@…>

  • optman/rtems/no-dpmem.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-timer.c, optman/sapi/no-ext.c, optman/sapi/no-io.c: Convert to using c99 fixed size types.
  • 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.rtems.com/license/LICENSE.
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  uint32_t   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  uint32_t      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.