const GateProcessSupportNull_GETREFCOUNT_FAILED |
|
Status returned by getReferenceCount when there is an error
#define GateProcessSupportNull_GETREFCOUNT_FAILED (Int)-1
const GateProcessSupportNull_Q_BLOCKING |
|
Blocking quality
#define GateProcessSupportNull_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 GateProcessSupportNull_Q_PREEMPTING |
|
Preempting quality
#define GateProcessSupportNull_Q_PREEMPTING (Int)2
DETAILS
Gates with this "quality" allow other threads to preempt the thread
that has already entered the gate.
GateProcessSupportNull_query() // module-wide |
|
Runtime test for a particular gate quality
Bool GateProcessSupportNull_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.
Module-Wide Built-Ins |
|
// Get this module's unique id
Bool GateProcessSupportNull_Module_startupDone();
// Test if this module has completed startup
// The heap from which this module allocates memory
Bool GateProcessSupportNull_Module_hasMask();
// Test whether this module has a diagnostics mask
Bits16 GateProcessSupportNull_Module_getMask();
// Returns the diagnostics mask for this module
Void GateProcessSupportNull_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
Instance Object Types |
|
typedef struct GateProcessSupportNull_Object GateProcessSupportNull_Object;
// Opaque internal representation of an instance object
// Client reference to an instance object
typedef struct GateProcessSupportNull_Struct GateProcessSupportNull_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 GateProcessSupportNull_Params {
// Instance config-params structure
// Common per-instance configs
Int key;
// globally unique key for SysV-style semaphore
} GateProcessSupportNull_Params;
// Initialize this config-params structure with supplier-specified defaults before instance creation
config GateProcessSupportNull_key // instance |
|
globally unique key for SysV-style semaphore
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)
DETAILS
This function creates a new GateProcess object which is initialized to
count. All gates created with the same key reference the same
underlying synchronization object and work between processes. The
underlying synchronization object should be automatically deleted when
all references to it have been deleted, and the reference count should
An implementation for a platform on which this is technically impossible
(e.g. an operating system that does not support multiple processes) may
provide a 'toy' implemenation with behavior matching that of
IGateProcessSupport.
Instance Deletion |
|
// Finalize and free this previously allocated instance object, setting the referenced handle to NULL
// Finalize the instance object inside the provided structure
GateProcessSupportNull_enter() // instance |
|
Enter this gate
ARGUMENTS
handle
handle of a previously-created GateProcessSupportNull 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.
GateProcessSupportNull_getReferenceCount() // instance |
|
Get the number of processes with references to this Gate
ARGUMENTS
handle
handle of a previously-created GateProcessSupportNull instance object
err
Pointer to Error.Block
RETURNS
Returns the number of processes that possess a
reference to this gate, or GETREFCOUNT_FAILED if an
error occured.
A 'toy' implementation should always return 0.
GateProcessSupportNull_leave() // instance |
|
Leave this gate
ARGUMENTS
handle
handle of a previously-created GateProcessSupportNull 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
// unconditionally move 3 levels up the inheritance hierarchy
// conditionally move 3 levels down the inheritance hierarchy; NULL upon failure
Instance Built-Ins |
|
Int GateProcessSupportNull_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 GateProcessSupportNull.GETREFCOUNT_FAILED |
|
Status returned by getReferenceCount when there is an error
XDCscript usage |
meta-domain |
const GateProcessSupportNull.GETREFCOUNT_FAILED = -1;
C SYNOPSIS
const GateProcessSupportNull.Q_BLOCKING |
|
Blocking quality
XDCscript usage |
meta-domain |
const GateProcessSupportNull.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 GateProcessSupportNull.Q_PREEMPTING |
|
Preempting quality
XDCscript usage |
meta-domain |
const GateProcessSupportNull.Q_PREEMPTING = 2;
DETAILS
Gates with this "quality" allow other threads to preempt the thread
that has already entered the gate.
C SYNOPSIS
metaonly config GateProcessSupportNull.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 GateProcessSupportNull.queryMeta() // module-wide |
|
Configuration time test for a particular gate quality
XDCscript usage |
meta-domain |
GateProcessSupportNull.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 GateProcessSupportNull.Params;
// Instance config-params object
params.key = Int -1;
// globally unique key for SysV-style semaphore
config GateProcessSupportNull.key // instance |
|
globally unique key for SysV-style semaphore
XDCscript usage |
meta-domain |
var params = new GateProcessSupportNull.Params;
...
params.key = Int -1;
C SYNOPSIS
Instance Creation |
|
XDCscript usage |
meta-domain |
var params =
new GateProcessSupportNull.
Params;
// Allocate instance config-params
params.config = ...
// Assign individual configs
var inst = GateProcessSupportNull.create(params);
// 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)
DETAILS
This function creates a new GateProcess object which is initialized to
count. All gates created with the same key reference the same
underlying synchronization object and work between processes. The
underlying synchronization object should be automatically deleted when
all references to it have been deleted, and the reference count should
An implementation for a platform on which this is technically impossible
(e.g. an operating system that does not support multiple processes) may
provide a 'toy' implemenation with behavior matching that of
IGateProcessSupport.