source: rtems/cpukit/rtems/src/dpmem.c @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*
2 *  Dual Port Memory Manager
3 *
4 *  COPYRIGHT (c) 1989-2008.
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
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/system.h>
17#include <rtems/config.h>
18#include <rtems/rtems/status.h>
19#include <rtems/rtems/support.h>
20#include <rtems/score/address.h>
21#include <rtems/rtems/dpmem.h>
22#include <rtems/score/object.h>
23#include <rtems/score/thread.h>
24
25/*
26 *  _Dual_ported_memory_Manager_initialization
27 *
28 *  This routine initializes all dual-ported memory manager related
29 *  data structures.
30 *
31 *  Input parameters:   NONE
32 *
33 *  Output parameters:  NONE
34 */
35
36void _Dual_ported_memory_Manager_initialization(void)
37{
38  _Objects_Initialize_information(
39    &_Dual_ported_memory_Information, /* object information table */
40    OBJECTS_CLASSIC_API,              /* object API */
41    OBJECTS_RTEMS_PORTS,              /* object class */
42    Configuration_RTEMS_API.maximum_ports,
43                                  /* maximum objects of this class */
44    sizeof( Dual_ported_memory_Control ),
45                                  /* size of this object's control block */
46    false,                        /* true if names of this object are strings */
47    RTEMS_MAXIMUM_NAME_LENGTH     /* maximum length of each object's name */
48#if defined(RTEMS_MULTIPROCESSING)
49    ,
50    false,                        /* true if this is a global object class */
51    NULL                          /* Proxy extraction support callout */
52#endif
53  );
54}
Note: See TracBrowser for help on using the repository browser.