The
xdc.runtime.knl package contains modules that provide typical
OS services. These xdc.runtime.knl modules require proxies to be
bound to an OS specific delegate. This specifies the interface to
be implemented by the OS specific delegate for
xdc.runtime.knl.GateProcess module.
The implementation of IGateThreadSupport should try to implement a gate
that supports priority inversion.
const IGateProcessSupport.GETREFCOUNT_FAILED |
|
Status returned by getReferenceCount when there is an error
const Int GETREFCOUNT_FAILED = -1;
const IGateProcessSupport.Q_BLOCKING |
|
Blocking quality
const Int 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.
const IGateProcessSupport.Q_PREEMPTING |
|
Preempting quality
const Int Q_PREEMPTING = 2;
DETAILS
Gates with this "quality" allow other threads to preempt the thread
that has already entered the gate.
metaonly config IGateProcessSupport.common$ // module-wide |
|
Common module configuration parameters
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.
IGateProcessSupport.query() // module-wide |
|
Runtime test for a particular gate quality
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.
metaonly IGateProcessSupport.queryMeta() // module-wide |
|
Configuration time test for a particular gate quality
metaonly Bool queryMeta(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.
config IGateProcessSupport.key // instance |
|
globally unique key for SysV-style semaphore
Instance Creation |
|
create();
// Create an instance-object
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.
IGateProcessSupport.enter() // instance |
|
Enter this gate
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.
IGateProcessSupport.getReferenceCount() // instance |
|
Get the number of processes with references to this Gate
ARGUMENTS
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.
IGateProcessSupport.leave() // instance |
|
Leave this gate
ARGUMENTS
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).