RTEMS
Files | Classes | Macros | Functions | Variables
Dual Ported Memory Manager Implementation

Files

file  dpmemdata.h
 Classic Dual Ported Memory Manager Data Structures.
 
file  dpmemimpl.h
 Dual Ported Memory Manager Implementation.
 

Classes

struct  Dual_ported_memory_Control
 

Macros

#define DUAL_PORTED_MEMORY_INFORMATION_DEFINE(max)
 Macro to define the objects information for the Classic Dual Ported Memory objects. More...
 

Functions

static __inline__ Dual_ported_memory_Control_Dual_ported_memory_Allocate (void)
 Allocates a port control block from the inactive chain of free port control blocks. More...
 
static __inline__ void _Dual_ported_memory_Free (Dual_ported_memory_Control *the_port)
 Frees a port control block to the inactive chain of free port control blocks. More...
 
static __inline__ Dual_ported_memory_Control_Dual_ported_memory_Get (Objects_Id id, ISR_lock_Context *lock_context)
 

Variables

Objects_Information _Dual_ported_memory_Information
 The Classic Dual Ported Memory objects information.
 

Detailed Description

Macro Definition Documentation

◆ DUAL_PORTED_MEMORY_INFORMATION_DEFINE

#define DUAL_PORTED_MEMORY_INFORMATION_DEFINE (   max)
Value:
_Dual_ported_memory, \
OBJECTS_CLASSIC_API, \
OBJECTS_RTEMS_PORTS, \
max, \
NULL \
)
#define OBJECTS_NO_STRING_NAME
Constant for the object information string name length to indicate that this object class has no stri...
Definition: objectdata.h:101
#define OBJECTS_INFORMATION_DEFINE(name, api, cls, type, max, nl, ex)
Statically initializes an objects information.
Definition: objectdata.h:427

Macro to define the objects information for the Classic Dual Ported Memory objects.

This macro should only be used by <rtems/confdefs.h>.

Parameters
maxThe configured object maximum (the OBJECTS_UNLIMITED_OBJECTS flag may be set).

Definition at line 63 of file dpmemdata.h.

Function Documentation

◆ _Dual_ported_memory_Allocate()

static __inline__ Dual_ported_memory_Control* _Dual_ported_memory_Allocate ( void  )
static

Allocates a port control block from the inactive chain of free port control blocks.

This routine allocates a port control block from the inactive chain of free port control blocks.

Definition at line 43 of file dpmemimpl.h.

◆ _Dual_ported_memory_Free()

static __inline__ void _Dual_ported_memory_Free ( Dual_ported_memory_Control the_port)
static

Frees a port control block to the inactive chain of free port control blocks.

This routine frees a port control block to the inactive chain of free port control blocks.

Definition at line 56 of file dpmemimpl.h.