const GateHWSem_Q_BLOCKING |
 |
Blocking quality
#define GateHWSem_Q_BLOCKING (Int)1
DETAILS
Gates with this "quality" may cause the calling thread to block;
i.e., suspend execution until another thread leaves the gate.
const GateHWSem_Q_PREEMPTING |
 |
Preempting quality
#define GateHWSem_Q_PREEMPTING (Int)2
DETAILS
Gates with this "quality" allow other threads to preempt the thread
that has already entered the gate.
enum GateHWSem_LocalProtect |
 |
Local protection enum
typedef enum GateHWSem_LocalProtect {
GateHWSem_LocalProtect_NONE,
GateHWSem_LocalProtect_INTERRUPT,
GateHWSem_LocalProtect_TASKLET,
GateHWSem_LocalProtect_THREAD,
GateHWSem_LocalProtect_PROCESS
} GateHWSem_LocalProtect;
DETAILS
Must be the same GateMP.
config GateHWSem_A_invProtectionLevel // module-wide |
 |
Asserted when an invalid protection level is encountered
extern const Assert_Id GateHWSem_A_invProtectionLevel;
config GateHWSem_A_invSemNum // module-wide |
 |
Asserted when supplied semNum is invalid for the relevant device
extern const Assert_Id GateHWSem_A_invSemNum;
config GateHWSem_A_invalidParams // module-wide |
 |
Asserted when insufficient information is passed to open
extern const Assert_Id GateHWSem_A_invalidParams;
GateHWSem_query() // module-wide |
 |
Runtime test for a particular gate quality
Bool GateHWSem_query(Int qual);
ARGUMENTS
qual
constant describing a quality
RETURNS
Returns TRUE if the gate has the given quality,
and FALSE otherwise, which includes the case when the gate does not
recognize the constant describing the quality.
GateHWSem_sharedMemReq() // module-wide |
 |
Amount of shared memory required for creation of each instance
ARGUMENTS
params
Pointer to the parameters that will be used in
the create.
DETAILS
The value returned by this function may depend on the cache alignment
requirements for the shared region from which memory will be used.
RETURNS
Number of MAUs needed to create the instance.
Module-Wide Built-Ins |
 |
// Get this module's unique id
Bool GateHWSem_Module_startupDone();
// Test if this module has completed startup
// The heap from which this module allocates memory
Bool GateHWSem_Module_hasMask();
// Test whether this module has a diagnostics mask
Bits16 GateHWSem_Module_getMask();
// Returns the diagnostics mask for this module
Void GateHWSem_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
Instance Object Types |
 |
typedef struct GateHWSem_Object GateHWSem_Object;
// Opaque internal representation of an instance object
// Client reference to an instance object
typedef struct GateHWSem_Struct GateHWSem_Struct;
// Opaque client structure large enough to hold an instance object
// Convert this instance structure pointer into an instance handle
// Convert this instance handle into an instance structure pointer
Instance Config Parameters |
 |
typedef struct GateHWSem_Params {
// Instance config-params structure
// Common per-instance configs
UInt resourceId;
// Logical resource id
Ptr sharedAddr;
// Physical address of the shared memory
} GateHWSem_Params;
// Initialize this config-params structure with supplier-specified defaults before instance creation
config GateHWSem_resourceId // instance |
 |
Logical resource id
config GateHWSem_sharedAddr // instance |
 |
Physical address of the shared memory
DETAILS
The creator must supply the shared memory that will be used
for maintaining shared state information. This parameter is used
only when
Type is set to
Type_SHARED
Instance Creation |
 |
// Allocate and initialize a new instance object and return its handle
// Initialize a new instance object inside the provided structure
ARGUMENTS
params
per-instance config params, or NULL to select default values (target-domain only)
eb
active error-handling block, or NULL to select default policy (target-domain only)
Instance Deletion |
 |
// Finalize and free this previously allocated instance object, setting the referenced handle to NULL
// Finalize the instance object inside the provided structure
GateHWSem_enter() // instance |
 |
Enter this gate
ARGUMENTS
handle
handle of a previously-created GateHWSem instance object
DETAILS
Each gate provider can implement mutual exclusion using different
algorithms; e.g., disabling all scheduling, disabling the scheduling
of all threads below a specified "priority level", suspending the
caller when the gate has been entered by another thread and
re-enabling it when the the other thread leaves the gate. However,
in all cases, after this method returns that caller has exclusive
access to the data protected by this gate.
A thread may reenter a gate without blocking or failing.
RETURNS
Returns a "key" that is used to
leave this gate; this
value is used to restore thread preemption to the state that
existed just prior to entering this gate.
GateHWSem_leave() // instance |
 |
Leave this gate
ARGUMENTS
handle
handle of a previously-created GateHWSem instance object
key
the value returned by a matching call to
enter
DETAILS
This method is only called by threads that have previously entered
this gate via
enter. After this method returns, the
caller must not access the data structure protected by this gate
(unless the caller has entered the gate more than once and other
calls to
leave remain to balance the number of previous
calls to
enter).
Instance Convertors |
 |
// unconditionally move one level up the inheritance hierarchy
// conditionally move one level down the inheritance hierarchy; NULL upon failure
// unconditionally move 2 levels up the inheritance hierarchy
// conditionally move 2 levels down the inheritance hierarchy; NULL upon failure
Instance Built-Ins |
 |
Int GateHWSem_Object_count();
// The number of statically-created instance objects
// The handle of the i-th statically-created instance object (array == NULL)
// The handle of the first dynamically-created instance object, or NULL
// The handle of the next dynamically-created instance object, or NULL
// The heap used to allocate dynamically-created instance objects
// The label associated with this instance object
// The name of this instance object
const GateHWSem.Q_BLOCKING |
 |
Blocking quality
XDCscript usage |
meta-domain |
const GateHWSem.Q_BLOCKING = 1;
DETAILS
Gates with this "quality" may cause the calling thread to block;
i.e., suspend execution until another thread leaves the gate.
C SYNOPSIS
const GateHWSem.Q_PREEMPTING |
 |
Preempting quality
XDCscript usage |
meta-domain |
const GateHWSem.Q_PREEMPTING = 2;
DETAILS
Gates with this "quality" allow other threads to preempt the thread
that has already entered the gate.
C SYNOPSIS
enum GateHWSem.LocalProtect |
 |
Local protection enum
XDCscript usage |
meta-domain |
values of type GateHWSem.LocalProtect
const GateHWSem.LocalProtect_NONE;
const GateHWSem.LocalProtect_INTERRUPT;
const GateHWSem.LocalProtect_TASKLET;
const GateHWSem.LocalProtect_THREAD;
const GateHWSem.LocalProtect_PROCESS;
DETAILS
Must be the same GateMP.
C SYNOPSIS
config GateHWSem.A_invProtectionLevel // module-wide |
 |
Asserted when an invalid protection level is encountered
XDCscript usage |
meta-domain |
msg: "A_invProtectionLevel: Unknown level of local protection"
};
C SYNOPSIS
config GateHWSem.A_invSemNum // module-wide |
 |
Asserted when supplied semNum is invalid for the relevant device
XDCscript usage |
meta-domain |
msg: "A_invSemNum: Invalid hardware semaphore number"
};
C SYNOPSIS
config GateHWSem.A_invalidParams // module-wide |
 |
Asserted when insufficient information is passed to open
XDCscript usage |
meta-domain |
msg: "A_invalidParams: Need to supply either a name or a semaphore Number"
};
C SYNOPSIS
metaonly config GateHWSem.common$ // module-wide |
 |
Common module configuration parameters
XDCscript usage |
meta-domain |
DETAILS
All modules have this configuration parameter. Its name
contains the '$' character to ensure it does not conflict with
configuration parameters declared by the module. This allows
new configuration parameters to be added in the future without
any chance of breaking existing modules.
metaonly GateHWSem.getNumResources() // module-wide |
 |
Number of gates instance within the module
XDCscript usage |
meta-domain |
GateHWSem.getNumResources() returns UInt
metaonly GateHWSem.queryMeta() // module-wide |
 |
Configuration time test for a particular gate quality
XDCscript usage |
meta-domain |
GateHWSem.queryMeta(Int qual) returns Bool
ARGUMENTS
qual
constant describing a quality
RETURNS
Returns TRUE if the gate has the given quality,
and FALSE otherwise, which includes the case when the gate does not
recognize the constant describing the quality.
Instance Config Parameters |
 |
XDCscript usage |
meta-domain |
var params = new GateHWSem.Params;
// Instance config-params object
params.resourceId = UInt 0;
// Logical resource id
params.sharedAddr = Ptr null;
// Physical address of the shared memory
config GateHWSem.resourceId // instance |
 |
Logical resource id
XDCscript usage |
meta-domain |
var params = new GateHWSem.Params;
...
params.resourceId = UInt 0;
C SYNOPSIS
config GateHWSem.sharedAddr // instance |
 |
Physical address of the shared memory
XDCscript usage |
meta-domain |
var params = new GateHWSem.Params;
...
params.sharedAddr = Ptr null;
DETAILS
The creator must supply the shared memory that will be used
for maintaining shared state information. This parameter is used
only when
Type is set to
Type_SHARED
C SYNOPSIS
Instance Creation |
 |
XDCscript usage |
meta-domain |
var params =
new GateHWSem.
Params;
// Allocate instance config-params
params.config = ...
// Assign individual configs
// Create an instance-object
ARGUMENTS
params
per-instance config params, or NULL to select default values (target-domain only)
eb
active error-handling block, or NULL to select default policy (target-domain only)