4.104.114.84.95
Last change
on this file since 3235ad9 was
3235ad9,
checked in by Joel Sherrill <joel.sherrill@…>, on 08/23/95 at 19:30:23
|
Support for variable length names added to Object Handler. This supports
both fixed length "raw" names and strings from the API's point of view.
Both inline and macro implementations were tested.
|
-
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 | |
---|
21 | void _Dual_ported_memory_Manager_initialization( |
---|
22 | unsigned32 maximum_ports |
---|
23 | ) |
---|
24 | { |
---|
25 | } |
---|
26 | |
---|
27 | rtems_status_code rtems_port_create( |
---|
28 | rtems_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 | |
---|
38 | rtems_status_code rtems_port_ident( |
---|
39 | rtems_name name, |
---|
40 | Objects_Id *id |
---|
41 | ) |
---|
42 | { |
---|
43 | return( RTEMS_NOT_CONFIGURED ); |
---|
44 | } |
---|
45 | |
---|
46 | rtems_status_code rtems_port_delete( |
---|
47 | Objects_Id id |
---|
48 | ) |
---|
49 | { |
---|
50 | return( RTEMS_NOT_CONFIGURED ); |
---|
51 | } |
---|
52 | |
---|
53 | rtems_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 | |
---|
62 | rtems_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.