|
NAME
SYNTAX
EXECUTABILITY
EFFECT
DESCRIPTION
EXAMPLES
1 /* the equivalent of skip and true */ 0 /* the equivalent of stop and false */ a == bA condition statement can only be passed if it holds, this means that the statement from the first example can always be passed without delay, the second can never be passed, and the third cannot be passed as long as the values of variables a and b differ. If the variables a and b are local, the result of the evaluation cannot be influenced by other processes, and this statement will work as either a skip or a stop . If at least one of the variables is global, the statement can act as a synchronizer between processes. NOTES
SEE ALSO
|