OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [rtems/] [optman/] [no-dpmem.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
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: no-dpmem.c,v 1.2 2001-09-27 11:59:19 chris Exp $
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
 
24
void _Dual_ported_memory_Manager_initialization(
25
  unsigned32 maximum_ports
26
)
27
{
28
}
29
 
30
rtems_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
 
46
rtems_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
 
59
rtems_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
 
71
rtems_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
 
85
rtems_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
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.